|
@ -8,18 +8,18 @@ namespace Win_in.Sfs.Basedata.Application.Contracts; |
|
|
public class ItemContainerImportInput : SfsBaseDataImportInputBase |
|
|
public class ItemContainerImportInput : SfsBaseDataImportInputBase |
|
|
{ |
|
|
{ |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 收容器代码
|
|
|
/// 容器代码
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[Key] |
|
|
[Key] |
|
|
[Display(Name = "收容器代码")] |
|
|
[Display(Name = "容器代码")] |
|
|
[Required(ErrorMessage = "{0}不能为空")] |
|
|
[Required(ErrorMessage = "{0}不能为空")] |
|
|
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")] |
|
|
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")] |
|
|
public string ContainerCode { get; set; } |
|
|
public string ContainerCode { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 收容器名称
|
|
|
/// 容器代码描述
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[Display(Name = "收容器名称")] |
|
|
[Display(Name = "容器代码描述")] |
|
|
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")] |
|
|
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")] |
|
|
public string ContainerName { get; set; } |
|
|
public string ContainerName { get; set; } |
|
|
|
|
|
|
|
@ -34,15 +34,15 @@ public class ItemContainerImportInput : SfsBaseDataImportInputBase |
|
|
public string ItemCode { get; set; } |
|
|
public string ItemCode { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 收容器计量单位
|
|
|
/// 容器计量单位
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[Display(Name = "收容器计量单位")] |
|
|
[Display(Name = "容器计量单位")] |
|
|
public string BasicUom { get; set; } |
|
|
public string BasicUom { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 收容器数量
|
|
|
/// 转储标包数量
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[Display(Name = "收容器数量")] |
|
|
[Display(Name = "转储标包数量")] |
|
|
[Required(ErrorMessage = "{0}是必填项")] |
|
|
[Required(ErrorMessage = "{0}是必填项")] |
|
|
public decimal Qty { get; set; } |
|
|
public decimal Qty { get; set; } |
|
|
|
|
|
|
|
|