注塑车间报表初版

This commit is contained in:
2024-07-29 17:12:20 +08:00
parent 0e09a8187c
commit 42f2d7ec9f
10 changed files with 227 additions and 24 deletions

View File

@@ -0,0 +1,7 @@
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class ZhuSuBiInput
{
public string day { get; set; }
}
}

View File

@@ -0,0 +1,42 @@
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class ZhuSuBiOutput
{
public DayMonthYieldOutput day_month_yield { get; set; }
public List<EquipPieOutput> equip_pie_list { get; set; }
public List<EquipPieOutput> equip_info_list { get; set; }
public List<ReportRecordOutput> report_record_list { get; set; }
}
public class DayMonthYieldOutput
{
public decimal month_qty;
public decimal day_qty;
public decimal month_qualified_percent;
public decimal day_qualified_percent;
}
public class ReportRecordOutput
{
public string mo_task_code { get; set; }
public string material_name { get; set; }
public string workline_name { get; set; }
public string report_type { get; set; }
public int qty { get; set; }
public string repoter_name { get; set; }
public int plan_qty { get; set; }
public int remain_plan_qty { get; set; }
public string report_time { get; set; }
}
public class EquipPieOutput
{
public string name { get; set; }
public int value { get; set; }
public string status { get; set; }
}
}