using System.ComponentModel.DataAnnotations; namespace DOAN.Model.Dto { /// /// 终检台,追溯码绑定检测数据列描述字典查询对象 /// public class TraceDictEolParameterQueryDto : PagerInfo { } /// /// 终检台,追溯码绑定检测数据列描述字典输入输出对象 /// public class TraceDictEolParameterDto { [Required(ErrorMessage = "数据上传字典不能为空")] public int Id { get; set; } public string ColCode { get; set; } public string Code { get; set; } public string Name { get; set; } public decimal UpperLimit { get; set; } public decimal LowerLimit { get; set; } public string Unit { get; set; } public int? Sort { get; set; } public int? Status { get; set; } public string CreateBy { get; set; } public DateTime? CreateTime { get; set; } } }