|
|
@ -12,78 +12,91 @@ namespace Win_in.Sfs.Scp.WebApi.Receipts |
|
|
|
/// <summary>
|
|
|
|
/// 仓库(Warehouse)
|
|
|
|
/// </summary>
|
|
|
|
[Required] |
|
|
|
[Display(Name = "仓库(Warehouse)")] |
|
|
|
public string Warehouse { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 收货口(Dock)
|
|
|
|
/// </summary>
|
|
|
|
[Required] |
|
|
|
[Display(Name = "收货口(Dock)")] |
|
|
|
public string Dock { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 时间窗口开始(TimeWindowBegin)
|
|
|
|
/// </summary>
|
|
|
|
[Required] |
|
|
|
[Display(Name = "时间窗口开始(TimeWindowBegin)")] |
|
|
|
public DateTime TimeWindowBegin { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 时间窗口结束(TimeWindowEnd)
|
|
|
|
/// </summary>
|
|
|
|
[Required] |
|
|
|
[Display(Name = "时间窗口结束(TimeWindowEnd)")] |
|
|
|
public DateTime TimeWindowEnd { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 收货时间(ReceiveTime)
|
|
|
|
/// </summary>
|
|
|
|
[Required] |
|
|
|
[Display(Name = "收货时间(ReceiveTime)")] |
|
|
|
public DateTime ReceiveTime { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 批次(Lot)
|
|
|
|
/// </summary>
|
|
|
|
[Required] |
|
|
|
[Display(Name = "批次(Lot)")] |
|
|
|
public string Lot { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 供应商批次(SupplierLot)
|
|
|
|
/// </summary>
|
|
|
|
[Required] |
|
|
|
[Display(Name = "供应商批次(SupplierLot)")] |
|
|
|
public string SupplierLot { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 生产日期(ProductionDate)
|
|
|
|
/// </summary>
|
|
|
|
[Required] |
|
|
|
[Display(Name = "生产日期(ProductionDate)")] |
|
|
|
public DateTime ProductionDate { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 计量单位(Uom)
|
|
|
|
/// </summary>
|
|
|
|
[Required] |
|
|
|
[Display(Name = "计量单位(Uom)")] |
|
|
|
public string Uom { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 发货数量(DeliverQty)
|
|
|
|
/// </summary>
|
|
|
|
[Required] |
|
|
|
[Display(Name = "发货数量(DeliverQty)")] |
|
|
|
public decimal DeliverQty { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 收货数量(ReceiveQty)
|
|
|
|
/// </summary>
|
|
|
|
[Required] |
|
|
|
[Display(Name = "收货数量(ReceiveQty)")] |
|
|
|
public decimal ReceiveQty { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 标包计量单位(Standard Pack Uom)
|
|
|
|
/// </summary>
|
|
|
|
[Required] |
|
|
|
[Display(Name = "标包计量单位(Standard Pack Uom)")] |
|
|
|
public string StdPackUom { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 标包数量(Standard Pack Qty)
|
|
|
|
/// </summary>
|
|
|
|
[Required] |
|
|
|
[Display(Name = "标包数量(Standard Pack Qty)")] |
|
|
|
public decimal StdPackQty { set; get; } |
|
|
|
|
|
|
|