|
|
@ -46,4 +46,40 @@ public class UnplannedIssueNoteDTO : SfsStoreDTOBase<UnplannedIssueNoteDetailDTO |
|
|
|
[StringLength(SfsEfCorePropertyConst.NameLength, ErrorMessage = "{0}最多输入{1}个字符")] |
|
|
|
public string OANumber { get; set; } |
|
|
|
|
|
|
|
/// ERP料号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "ERP料号")] |
|
|
|
public string ItemCode { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 物品名称
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物品名称")] |
|
|
|
public string ItemName { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 物品描述1
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物品描述1")] |
|
|
|
public string ItemDesc1 { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 物品描述2
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物品描述2")] |
|
|
|
public string ItemDesc2 { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// ERP储位
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "ERP储位")] |
|
|
|
public string FromErpLocationCode { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 数量
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "数量")] |
|
|
|
public decimal Qty { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|