|
|
@ -10,6 +10,7 @@ public class InventoryInitialNoteImportInput : SfsStoreImportInputBase, IHasQty, |
|
|
|
/// 仓库代码
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "仓库代码")] |
|
|
|
[Required(ErrorMessage = "{0}是必填项")] |
|
|
|
public string WarehouseCode { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
@ -22,6 +23,7 @@ public class InventoryInitialNoteImportInput : SfsStoreImportInputBase, IHasQty, |
|
|
|
/// ERP料号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "ERP料号")] |
|
|
|
[Required(ErrorMessage = "{0}是必填项")] |
|
|
|
public string ItemCode { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
@ -35,24 +37,28 @@ public class InventoryInitialNoteImportInput : SfsStoreImportInputBase, IHasQty, |
|
|
|
/// 单位
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "单位")] |
|
|
|
[Required(ErrorMessage = "{0}是必填项")] |
|
|
|
public string Uom { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 批次
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "批次")] |
|
|
|
[Required(ErrorMessage = "{0}是必填项")] |
|
|
|
public string Lot { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 库位代码
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "库位代码")] |
|
|
|
[Required(ErrorMessage = "{0}是必填项")] |
|
|
|
public string LocationCode { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// ERP库位
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "ERP库位")] |
|
|
|
[Required(ErrorMessage = "{0}是必填项")] |
|
|
|
public string LocationErpCode { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
@ -72,11 +78,13 @@ public class InventoryInitialNoteImportInput : SfsStoreImportInputBase, IHasQty, |
|
|
|
/// 库区
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "库区")] |
|
|
|
[Required(ErrorMessage = "{0}是必填项")] |
|
|
|
public string LocationArea { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 库位组
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "库位组")] |
|
|
|
[Required(ErrorMessage = "{0}是必填项")] |
|
|
|
public string LocationGroup { get; set; } |
|
|
|
} |
|
|
|