质量大屏接口

This commit is contained in:
2024-09-27 16:44:50 +08:00
parent 0ba4d496d1
commit 3997e71cf6
3 changed files with 112 additions and 1 deletions

View File

@@ -0,0 +1,46 @@
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; }
}
}