|
|
@ -13,25 +13,36 @@ public class PositionCodeImportInput : SfsBaseDataImportInputBase |
|
|
|
[Display(Name = "代码")] |
|
|
|
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")] |
|
|
|
public string Code { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 物料号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料号")] |
|
|
|
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")] |
|
|
|
public string PartCode { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 标包数量
|
|
|
|
/// 物料名称
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "标包数量")] |
|
|
|
[Required(ErrorMessage = "{0}是必填项")] |
|
|
|
public decimal StdPackQty { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "物料名称")] |
|
|
|
[StringLength(SfsEfCorePropertyConst.NameLength, ErrorMessage = "{0}最多输入{1}个字符")] |
|
|
|
public string PartName { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 库位
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "库位")] |
|
|
|
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")] |
|
|
|
public string LocationCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 库位名称
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "库位名称")] |
|
|
|
[StringLength(SfsEfCorePropertyConst.NameLength, ErrorMessage = "{0}最多输入{1}个字符")] |
|
|
|
public string LocationName { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 标包数量
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "标包数量")] |
|
|
|
[Required(ErrorMessage = "{0}是必填项")] |
|
|
|
public decimal StdPackQty { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|