fature
This commit is contained in:
@ -42,7 +42,7 @@ namespace WCS.BLL.DbModels
|
||||
[SugarColumn(ColumnName = "mat_spec", Length = 150, IsNullable = true, ColumnDescription = "物料规格")]
|
||||
public string? MatSpec { get; set; }
|
||||
|
||||
|
||||
|
||||
[SugarColumn(ColumnName = "mat_unit", Length = 100, IsNullable = true, ColumnDescription = "物料单位")]
|
||||
public string? MatUnit { get; set; }
|
||||
|
||||
@ -75,6 +75,13 @@ namespace WCS.BLL.DbModels
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "is_printed", ColumnDescription = "是否已打印")]
|
||||
public bool IsPrinted { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// 打印次数
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "printed_times", DefaultValue = "0", ColumnDescription = "打印次数")]
|
||||
public int PrintedTimes { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:更新人
|
||||
/// Default:
|
||||
|
Reference in New Issue
Block a user