using System.ComponentModel.DataAnnotations; namespace DOAN.Model.MES.quality.FQC.Dto { /// /// 最终检验查询对象 /// public class QcFinalInspectionQueryDto : PagerInfo { public string FkWorkorder { get; set; } public string ProductCode { get; set; } public string ParamterName { get; set; } public int CheckResult { get; set; } } /// /// 最终检验输入输出对象 /// public class QcFinalInspectionDto { [Required(ErrorMessage = "主键不能为空")] public int Id { get; set; } public string FkWorkorder { get; set; } public string FactoryCode { get; set; } public string LineCode { get; set; } public string MachineCode { get; set; } public string ProductCode { get; set; } public string Productname { get; set; } public string SNnumber { get; set; } public string ParamterName { get; set; } public decimal StandardParamterValue { get; set; } public decimal RealParamterValue { get; set; } public decimal UpRangeLimit { get; set; } public decimal LowRangeLimit { get; set; } public string Unit { get; set; } public int CheckResult { get; set; } public DateTime? ParamTime { get; set; } public string Createdby { get; set; } public string Updatedby { get; set; } public DateTime? CreatedTime { get; set; } public DateTime? UpdatedTime { get; set; } } }