插单子完成
This commit is contained in:
@@ -164,7 +164,7 @@ namespace Model.DBModel
|
||||
///
|
||||
[SugarColumn(ColumnName = "year")]
|
||||
[ExcelIgnore]
|
||||
public float Year { get; set; }
|
||||
public int Year { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 周
|
||||
@@ -172,7 +172,7 @@ namespace Model.DBModel
|
||||
///
|
||||
[SugarColumn(ColumnName = "week")]
|
||||
[ExcelIgnore]
|
||||
public float Week { get; set; }
|
||||
public int Week { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -103,13 +103,45 @@ namespace ZR.Model.MES.pro
|
||||
[SugarColumn(ColumnName = "remark2")]
|
||||
[ExcelColumn(Name = "备注2", IndexName = "L")]
|
||||
public string Remark2 { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 备注3
|
||||
/// 备注3,识别是否需要工单
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "remark3")]
|
||||
[ExcelIgnore]
|
||||
public string Remark3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注4 :来源
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "remark4")]
|
||||
[ExcelIgnore]
|
||||
public string Remark4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 序号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "sort")]
|
||||
[ExcelIgnore]
|
||||
public int Sort { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 客户工单号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "client_workorder")]
|
||||
[ExcelIgnore]
|
||||
public string ClientWorkorder { get; set; }
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 状态:0初态 1上线
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "status")]
|
||||
[ExcelIgnore]
|
||||
public int Status { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 年
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user