44 lines
1.3 KiB
C#
44 lines
1.3 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 decimal qty { get; set; }
|
|
public string repoter_name { get; set; }
|
|
public decimal plan_qty { get; set; }
|
|
public decimal remain_plan_qty { get; set; }
|
|
public string report_time { get; set; }
|
|
}
|
|
|
|
public class EquipPieOutput
|
|
{
|
|
public string id { get; set; }
|
|
public string code { get; set; }
|
|
public string name { get; set; }
|
|
public int value { get; set; }
|
|
|
|
public string status { get; set; }
|
|
}
|
|
|
|
} |