任务单调整 更换设备模具产线 任务单操作记录

This commit is contained in:
2023-08-10 11:58:41 +08:00
parent 1bbb30f135
commit 4a81df87b0
11 changed files with 222 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class ChangeEquipInput
{
public string mo_task_id { get; set; }
public string equip_id { get; set; }
}
}

View File

@@ -0,0 +1,8 @@
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class ChangeMoldInput
{
public string mo_task_id { get; set; }
public string mold_id { get; set; }
}
}

View File

@@ -0,0 +1,8 @@
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class ChangeWorklineInput
{
public string mo_task_id { get; set; }
public string workline_id { get; set; }
}
}

View File

@@ -9,14 +9,18 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
public string mo_task_code { get; set; }
public string mo_task_status { get; set; }
public string material_id { get; set; }
public string material_id_id { get; set; }
public string mold_id { get; set; }
public string mold_id_id { get; set; }
public int? plan_qty { get; set; }
public int? complete_qty { get; set; }
public int? scheduled_qty { get; set; }
public string workline_id { get; set; }
public string workline_id_id { get; set; }
public string estimated_start_date { get; set; }
public string estimated_end_date { get; set; }
public string eqp_id { get; set; }
public string eqp_id_id { get; set; }
public string create_time { get; set; }
}
}