using System.ComponentModel.DataAnnotations; namespace ZR.Model.MES.pro.DTO { /// /// 包装记录查询对象 /// public class WmPackingrecordQueryDto : PagerInfo { public string PartNum { get; set; } public string Machine { get; set; } public string WorkOrderNum { get; set; } public string PackingCode { get; set; } public DateTime? start_time { get; set; } public DateTime? end_time { get; set; } } /// /// 包装记录输入输出对象 /// public class WmPackingrecordDto { public long Id { get; set; } public string PartNum { get; set; } public string Machine { get; set; } public string ProductCode { get; set; } public string PackingCode { get; set; } public string ScannerContent { get; set; } public string WorkOrderNum { get; set; } public string Standby3 { get; set; } public string Standby4 { get; set; } public string Standby5 { get; set; } [Required(ErrorMessage = "指示是否满箱不能为空")] public bool BFilled { get; set; } public DateTime? CreateTime { get; set; } } }