using System.ComponentModel.DataAnnotations; namespace ZR.Model.MES.wms.Dto { /// /// 拼箱/拆箱待打标签记录表查询对象 /// public class WmPackageLclQueryDto : PagerInfo { public string Partnumber { get; set; } public string PackageCode { get; set; } public string LocationCode { get; set; } public int Type { get; set; } public int Status { get; set; } } /// /// 拼箱/拆箱待打标签记录表输入输出对象 /// public class WmPackageLclDto { public string Id { get; set; } [Required(ErrorMessage = "零件号不能为空")] public string Partnumber { get; set; } public string Description { get; set; } [Required(ErrorMessage = "外箱标签;外箱标签(外箱批次号)不能为空")] public string PackageCode { get; set; } public string SerialNumber { get; set; } public string LocationCode { get; set; } [Required(ErrorMessage = "零件数不能为空")] public int GoodsNum { get; set; } = 0; public string Team { get; set; } = "C"; public int Type { get; set; } = 0; public int Status { get; set; } = 0; public string Remark { get; set; } = string.Empty; public string CreatedBy { get; set; } public DateTime? CreatedTime { get; set; } public string UpdatedBy { get; set; } public DateTime? UpdatedTime { get; set; } } }