using System.ComponentModel.DataAnnotations; namespace DOAN.Model.MES.exception.Dto { /// /// 工单修改日志表查询对象 /// public class ProWorkorderUpdateLogQueryDto : PagerInfo { public string Workorder { get; set; } public string ResponsiblePerson { get; set; } public DateTime[] SearchDateTimeArray { get; set; }=new DateTime[2]; } /// /// 工单修改日志表输入输出对象 /// public class ProWorkorderUpdateLogDto { [Required(ErrorMessage = "雪花不能为空")] public string Id { get; set; } public string Workorder { get; set; } /// /// 存货编码 /// public string ProductionCode { get; set; } /// /// 产品名称 /// public string ProductionName { get; set; } /// /// 规格型号 /// public string Specification { get; set; } public string Log { get; set; } public string ResponsiblePerson { get; set; } public string Reason { get; set; } public DateTime? ChangeTime { get; set; } public string Operator { get; set; } public DateTime? CreatedTime { get; set; } public string CreatedBy { get; set; } public DateTime? UpdatedTime { get; set; } public string UpdatedBy { get; set; } } }