namespace Tnb.ProductionMgr.Entities.Dto { /// /// 设备列表输出参数 /// public class EquipmentListOutput //: EqpEquipment 不能直接继承实体类 { /// /// 设备Id /// public string eqp_id { get; set; } /// /// 设备编码 /// public string eqp_code { get; set; } /// /// 设备类型编码 /// public string eqp_type_code { get; set; } /// /// 设备机台号 /// public string eqp_machine_num { get; set; } /// /// 任务单数量 /// public int task_list_qty { get; set; } /// /// 吨位 /// public decimal? tonnage { get; set; } /// /// 最早开始时间 /// public string first_date { get; set; } /// /// 预计结束时间 /// public DateTime? estimated_end_date { get; set; } } }