插单子完成

This commit is contained in:
qianhao.xu
2024-01-22 20:29:25 +08:00
parent 835025afe9
commit 53fbedab77
9 changed files with 68 additions and 7 deletions

View File

@@ -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>

View File

@@ -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>