模板修改 增加绑定时间选项
This commit is contained in:
@ -119,6 +119,12 @@ namespace WCS.BLL.DbModels
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[SugarColumn(ColumnName = "station_code", Length = 64, IsNullable = true, ColumnDescription = "站位编号")]
|
[SugarColumn(ColumnName = "station_code", Length = 64, IsNullable = true, ColumnDescription = "站位编号")]
|
||||||
public string StationCode { get; set; }
|
public string StationCode { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 绑定时间
|
||||||
|
/// </summary>
|
||||||
|
[SugarColumn(ColumnName = "bind_time", IsNullable = true, ColumnDescription = "绑定时间")]
|
||||||
|
public DateTime? BindTime { get; set; } = DateTime.Now;
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -54,6 +54,7 @@ namespace WCS.Model.ApiModel.MatDetailCurrentInfo
|
|||||||
|
|
||||||
public DateTime? ModifyTime { get; set; } = DateTime.Now;
|
public DateTime? ModifyTime { get; set; } = DateTime.Now;
|
||||||
|
|
||||||
|
public DateTime? BindTime { get; set; } = DateTime.Now;
|
||||||
#region 盘点数量
|
#region 盘点数量
|
||||||
public int StocktakingQty { get; set; } = -1;
|
public int StocktakingQty { get; set; } = -1;
|
||||||
#endregion
|
#endregion
|
||||||
|
Binary file not shown.
Reference in New Issue
Block a user