using System.ComponentModel.DataAnnotations; namespace ZR.Model.Dto { /// /// 后道标签打印记录查询对象 /// public class QcBackendRecordLabelPrintQueryDto : PagerInfo { } /// /// 后道标签打印记录输入输出对象 /// public class QcBackendRecordLabelPrintDto { [Required(ErrorMessage = "主键不能为空")] public string Id { get; set; } public string MachineCode { get; set; } [Required(ErrorMessage = "标签编码不能为空")] public string LabelCode { get; set; } public string WorkOrder { get; set; } public string PartNumber { get; set; } public string Description { get; set; } public string Team { get; set; } public string BatchCode { get; set; } public int? SerialNumber { get; set; } public int? PartNum { get; set; } public int? LabelType { get; set; } public int? BoxMaxNum { get; set; } public int? IsFull { get; set; } public int? IsLcl { get; set; } public string CreateBy { get; set; } public DateTime? CreateTime { get; set; } } }