42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
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; }
|
|
}
|
|
|
|
} |