Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entities/Dto/PrdManage/ZlBiOutput.cs
2024-09-27 16:44:50 +08:00

46 lines
1.7 KiB
C#

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<ZlBiQcTaskListOutput> qc_task_list { get; set; }
public List<ZlBiQcTaskDetailListOutput> qc_sj_task_list { get; set; }
public List<ZlBiQcTaskDetailListOutput> qc_xj_task_list { get; set; }
public List<ZlBiQcTaskDetailListOutput> qc_mj_task_list { get; set; }
public List<ZlBiQcTaskDetailListOutput> 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; }
/// <summary>
/// 物料规格
/// </summary>
public string material_specification { get; set; }
/// <summary>
/// 物料型号(箱号)
/// </summary>
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; }
}
}