模板修改 增加绑定时间选项

This commit is contained in:
hehaibing-1996
2025-03-05 19:32:41 +08:00
parent 71eb88bd02
commit fb573cdb5b
3 changed files with 7 additions and 0 deletions

View File

@ -119,6 +119,12 @@ namespace WCS.BLL.DbModels
/// </summary>
[SugarColumn(ColumnName = "station_code", Length = 64, IsNullable = true, ColumnDescription = "站位编号")]
public string StationCode { get; set; }
/// <summary>
/// 绑定时间
/// </summary>
[SugarColumn(ColumnName = "bind_time", IsNullable = true, ColumnDescription = "绑定时间")]
public DateTime? BindTime { get; set; } = DateTime.Now;
#endregion
/// <summary>

View File

@ -54,6 +54,7 @@ namespace WCS.Model.ApiModel.MatDetailCurrentInfo
public DateTime? ModifyTime { get; set; } = DateTime.Now;
public DateTime? BindTime { get; set; } = DateTime.Now;
#region
public int StocktakingQty { get; set; } = -1;
#endregion