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 children { get; set; } = new List(); } 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; } } }