using System; using System.Collections.Generic; using System.DirectoryServices.Protocols; using System.Linq; using System.Security.Principal; using System.Text; using System.Threading.Tasks; using JNPF.Common.Security; namespace Tnb.ProductionMgr.Entities.Dto.PrdManage { public class PrdMoTaskOutput { /// /// 生产任务单号 /// public string mo_task_code { get; set; } /// /// 任务单状态 /// public string mo_task_status { get; set; } /// /// 物料编号 /// public string material_code { get; set; } /// /// 物料名称 /// public string material_name { get; set; } /// /// 模具编码 /// public string mold_code { get; set; } /// /// 模具名称 /// public string mold_name { get; set; } /// /// 设备编码 /// public string eqp_code { get; set; } /// /// 设备名称 /// public string eqp_name { get; set; } /// /// 设备型号 /// public string eqp_type_code { get; set; } /// /// 产线编码 /// public string workline_code { get; set; } /// /// 产线名称 /// public string workline_name { get; set; } /// /// 任务单数量 /// public int mo_task_qty { get; set; } /// /// 完成数量 /// public int? complete_qty { get; set; } /// /// 计划生产数量 /// public int? plan_qty { get; set; } public int? scheduled_qty { get; set; } /// /// 预计开工时间 /// public string estimated_start_date { get; set; } = string.Empty; /// /// 预计完工时间 /// public string estimated_end_date { get; set; }= string.Empty; /// /// 工序编码 /// public string process_code { get; set; } /// /// 工序名称 /// public string process_name { get; set;} public string create_time { get; set; } } public class PrdMoTaskTreeOutput : TreeModel { /// /// 生产任务单号 /// public string? mo_task_code { get; set; } public string? material_id { get; set; } public string? mold_id { get; set; } public string? eqp_id { get; set; } /// /// 物料 /// public string? material_id_id { get; set; } /// /// 模具 /// public string? mold_id_id { get; set; } /// /// 设备 /// public string? eqp_id_id { get; set; } /// /// 预计开始时间 /// public string? estimated_start_date { get; set; } /// /// 预计结束时间 /// public string? estimated_end_date { get; set; } /// /// 创建时间 /// public string? create_time { get; set; } } }