namespace Tnb.ProductionMgr.Entities.Dto.PrdManage { public class PADPackageTaskPageOutput { public string id { get; set; } /// /// 生产任务编号 /// public string? mo_task_code { get; set; } /// /// 工单Id /// public string? mo_id { get; set; } /// /// 物料Id /// public string material_id { get; set; } public string material_code { get; set; } public string material_name { get; set; } /// /// 产线id /// public string? workline_id { get; set; } public string? workline_name { get; set; } /// /// 生产bom id /// public string? bom_id { get; set; } /// /// 任务单状态 /// public string? mo_task_status { get; set; } /// /// 已完工数量 /// public int? complete_qty { get; set; } /// /// 报废数量 /// public int? scrap_qty { get; set; } /// /// 已排产数量 /// public int? scheduled_qty { get; set; } /// /// 排产类型:1、注塑、挤出2、组装、包装 /// public int? schedule_type { get; set; } public int? reported_work_qty { get; set; } /// /// 计划开始时间 /// public string? estimated_start_date { get; set; } /// /// 计划结束时间 /// public string? estimated_end_date { get; set; } /// /// 父任务Id /// public string? parent_id { get; set; } /// /// 工序id /// public string process_id { get; set; } public string process_name { get; set; } public string mbom_process_id { get; set; } public string equip_id { get; set; } public string equip_code { get; set; } public string equip_name { get; set; } public string mold_id { get; set; } public string mold_code { get; set; } public string mold_name { get; set; } public DateTime? create_time { get; set; } } }