|
|
@ -10,14 +10,11 @@ namespace Win_in.Sfs.Wms.Store.Application.Contracts; |
|
|
|
[Display(Name = "Kitting叫料申请导入")] |
|
|
|
public class KittingIssueRequestImportInput : SfsStoreImportInputBase |
|
|
|
{ |
|
|
|
#region 目标库位信息
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 目标库位
|
|
|
|
/// 物品代码
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "目标库位")] |
|
|
|
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")] |
|
|
|
public string ToLocationCode { get; set; } |
|
|
|
[Display(Name = "物品代码")] |
|
|
|
public string ItemCode { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 需求数量
|
|
|
@ -26,10 +23,9 @@ public class KittingIssueRequestImportInput : SfsStoreImportInputBase |
|
|
|
public decimal Qty { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 物品代码
|
|
|
|
/// 目标库位
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物品代码")] |
|
|
|
public string ItemCode { get; set; } |
|
|
|
|
|
|
|
#endregion
|
|
|
|
[Display(Name = "目标库位")] |
|
|
|
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")] |
|
|
|
public string ToLocationCode { get; set; } |
|
|
|
} |
|
|
|