namespace Tnb.ProductionMgr.Entities.Dto.PrdManage { public class ZlBiOutput { public int mo_task_count { get; set; } public int qc_all_count { get; set; } public int qc_complete_count { get; set; } public int qc_ok_count { get; set; } public List qc_task_list { get; set; } public List qc_sj_task_list { get; set; } public List qc_xj_task_list { get; set; } public List qc_mj_task_list { get; set; } public List qc_lbjj_task_list { get; set; } } public class ZlBiQcTaskListOutput { public string mo_task_code { get; set; } public string equip_workline_name { get; set; } public string checktype { get; set; } public string material_name { get; set; } /// /// 物料规格 /// public string material_specification { get; set; } /// /// 物料型号(箱号) /// public string material_standard { get; set; } public int? qty { get; set; } public int? rqty { get; set; } public string result { get; set; } public string execuser { get; set; } public string exectime{ get; set; } } public class ZlBiQcTaskDetailListOutput { public string mo_task_code { get; set; } public string equip_workline_name { get; set; } public string execuser { get; set; } public string create_time{ get; set; } public string checktype{ get; set; } } }