|
|
@ -1,3 +1,4 @@ |
|
|
|
using System; |
|
|
|
using System.ComponentModel.DataAnnotations; |
|
|
|
using Win_in.Sfs.Shared.Domain; |
|
|
|
using Win_in.Sfs.Shared.Domain.Shared.Enums.Store; |
|
|
@ -19,7 +20,26 @@ public class UnplannedReceiptJobDTO : SfsJobDTOBase<UnplannedReceiptJobDetailDTO |
|
|
|
|
|
|
|
[Display(Name = "退料类别")] |
|
|
|
public EnumUnplannedReceiptType UnplannedReceiptType { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 部门代码
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "部门代码")] |
|
|
|
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")] |
|
|
|
public string DeptCode { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 部门名称
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "部门名称")] |
|
|
|
[StringLength(SfsEfCorePropertyConst.NameLength, ErrorMessage = "{0}最多输入{1}个字符")] |
|
|
|
public string DeptName { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 建档日
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "建档日")] |
|
|
|
public DateTime BuildDate { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// OA单据号
|
|
|
|
/// </summary>
|
|
|
|