工单完成情况汇总
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
|
||||
{
|
||||
public class PrdMoStatisticsOutput
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string mo_code { get; set; }
|
||||
public string mo_status { get; set; }
|
||||
public string material_name { get; set; }
|
||||
public string material_code { get; set; }
|
||||
public decimal? plan_qty { get; set; }
|
||||
public decimal? scheduled_qty { get; set; }
|
||||
public decimal? tobe_scheduled_qty { get; set; }
|
||||
public decimal? reported_work_qty { get; set; }
|
||||
public decimal? complete_rate { get; set; }
|
||||
public List<PrdMoStatisticsDetailOutput> children { get; set; } = new List<PrdMoStatisticsDetailOutput>();
|
||||
}
|
||||
|
||||
public class PrdMoStatisticsDetailOutput
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string mo_task_code { get; set; }
|
||||
public string mo_task_status { get; set; }
|
||||
public string estimated_start_date { get; set; }
|
||||
public string estimated_end_date { get; set; }
|
||||
public decimal? scheduled_qty { get; set; }
|
||||
public decimal? reported_work_qty { get; set; }
|
||||
public decimal? scrap_qty { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user