生产相关列表倒叙,生产工单列表重写

This commit is contained in:
2023-07-28 16:26:27 +08:00
parent 703eda463e
commit c18b937dc1
10 changed files with 163 additions and 59 deletions

View File

@@ -0,0 +1,22 @@
namespace Tnb.ProductionMgr.Entities.Dto
{
public class PrdMoListOuput
{
public string id { get; set; }
public string mo_type { get; set; }
public string mo_source { get; set; }
public string mo_code { get; set; }
public string plan_start_date { get; set; }
public string plan_end_date { get; set; }
public string material_id { get; set; }
public int? plan_qty { get; set; }
public string unit_id { get; set; }
public string mo_status { get; set; }
public string? remark { get; set; }
public string combine_mo_code { get; set; }
public string material_id_id { get; set; }
public List<PrdMoListOuput> children { get; set; } = new List<PrdMoListOuput>();
}
}

View File

@@ -0,0 +1,14 @@
namespace Tnb.ProductionMgr.Entities.Dto
{
public class PrdMoTaskIssueListOutput
{
public string id { get; set; }
public string mo_task_code { get; set; }
public string material_id { get; set; }
public string mold_id { get; set; }
public string mo_task_status { get; set; }
public int? plan_qty { get; set; }
public int? scheduled_qty { get; set; }
public string create_time { get; set; }
}
}

View File

@@ -84,6 +84,8 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
/// 工序名称
/// </summary>
public string process_name { get; set;}
public string create_time { get; set; }
}

View File

@@ -17,5 +17,6 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
public string estimated_start_date { get; set; }
public string estimated_end_date { get; set; }
public string eqp_id { get; set; }
public string create_time { get; set; }
}
}

View File

@@ -227,5 +227,11 @@ public partial class PrdMo : BaseEntity<string>
/// 物料单位
/// </summary>
public string? unit_id { get; set; }
/// <summary>
/// 工单来源
/// </summary>
public string? mo_source { get; set; }
}