Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entities/Dto/PrdManage/PrdMoStatisticsOutput.cs
2023-09-21 15:45:03 +08:00

29 lines
1.2 KiB
C#

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; }
}
}