移动端注塑挤出任务管理相关接口

This commit is contained in:
2023-08-30 16:51:31 +08:00
parent 52b0eb1762
commit 2d6e2a56fc
5 changed files with 189 additions and 5 deletions

View File

@@ -0,0 +1,26 @@
namespace Tnb.ProductionMgr.Entities
{
public class AppPrdMoTaskOneListOutput
{
public string id { get; set; }
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 material_code { get; set; }
public string material_name { get; set; }
public string mold_id { get; set; }
public string mold_id_id { get; set; }
public string mold_code { get; set; }
public string eqp_id { get; set; }
public string eqp_id_id { get; set; }
public string equip_code { get; set; }
public int? scheduled_qty { get; set; }
public int? reported_work_qty { get; set; }
public int? scrap_qty { get; set; }
public string plan_start_date { get; set; }
public string plan_end_date { get; set; }
}
}