namespace RIZO.Model.YALITEST.Dto { /// /// 查询对象 /// public class Test1QueryDto : PagerInfo { } /// /// 输入输出对象 /// public class Test1Dto { [Required(ErrorMessage = "Id不能为空")] public long Id { get; set; } public string Linecode { get; set; } public string Linename { get; set; } public string Machinecode { get; set; } public string Machinename { get; set; } public string Rountingcode { get; set; } public string Rountingname { get; set; } public string Operationcode { get; set; } public string Operationname { get; set; } public int? Operationxuhao { get; set; } public int? Status { get; set; } public string Worker { get; set; } public DateTime? Starttime { get; set; } public DateTime? Finishtime { get; set; } public int? Ifupload { get; set; } public string Partnumber { get; set; } [ExcelColumn(Name = "Status")] public string StatusLabel { get; set; } } }