注塑车间报表初版
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user