工单完成情况汇总

This commit is contained in:
2023-09-21 15:45:03 +08:00
parent 84d65644c7
commit 1d9e74b45f
5 changed files with 120 additions and 3 deletions

View File

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