namespace DOAN.Model.Factory_Model.Dto { /// /// 产线查询对象 /// public class BaseProductionLineQueryDto : PagerInfo { public int? FkWorkshopId { get; set; } public string LineCode { get; set; } public string LineName { get; set; } public int? Status { get; set; } } /// /// 产线输入输出对象 /// public class BaseProductionLineDto { [Required(ErrorMessage = "主键不能为空")] public int Id { get; set; } public int? FkWorkshopId { get; set; } public string WorkshopName { get; set; } public string LineCode { get; set; } public string LineName { get; set; } public int? Status { get; set; } public string Remark { get; set; } public string CreatedBy { get; set; } public DateTime? CreatedTime { get; set; } public string UpdatedBy { get; set; } public DateTime? UpdatedTime { get; set; } [ExcelColumn(Name = "状态")] public string StatusLabel { get; set; } } }