using System.ComponentModel.DataAnnotations; namespace DOAN.Model.MES.quality.FQC.Dto { /// /// 终检结果详情查询对象 /// public class QcFinalInspectionResultQueryDto : PagerInfo { public string Workorder { get; set; } } /// /// 终检结果详情输入输出对象 /// public class QcFinalInspectionResultDto { [Required(ErrorMessage = "Id不能为空")] public int Id { get; set; } public string Workorder { get; set; } public string Direction { get; set; } public int? QualifiedQuantity { get; set; } public int? UnqualifiedQuantiy { get; set; } public string CreatedBy { get; set; } public DateTime? CreatedTime { get; set; } public string UpdatedBy { get; set; } public DateTime? UpdatedTime { get; set; } } }