using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using JNPF.Common.Security; namespace Tnb.ProductionMgr.Entities.Dto.PrdManage { public class PrdMoListTreeOutput { //public Dictionary row { get; set; } #region 注释代码 public string? org_id { get; set; } /// /// 工单id /// public string mo_id { get; set; } = string.Empty; /// /// 工单代码 /// public string mo_code { get; set; } = string.Empty; /// /// 物料编号 /// public string? material_code { get; set; } /// /// 物料名称 /// public string material_name { get; set; } = string.Empty; /// /// 物料规格型号 /// public string? material_standard { get; set; } = string.Empty; /// /// 工单类型:1-正常工单、2-返工工单、3-试制工单 /// public string? mo_type { get; set; } /// /// 生产状态 Initial: 初始, Confirm:确认 Release: 下发, Open: 生产中, Close: 关单, Pending: 暂停 /// public string? mo_status { get; set; } /// /// 计划生产数量 /// public string? plan_qty { get; set; } = string.Empty; /// /// 已投入数量 /// public string? input_qty { get; set; } = string.Empty; /// /// 已完工数量 /// public string? complete_qty { get; set; } = string.Empty; /// /// 报废数量 /// public string? scrap_qty { get; set; } = string.Empty; /// /// 计划开始时间 /// public string? plan_start_date { get; set; } = string.Empty; /// /// 计划结束时间 /// public string? plan_end_date { get; set; } = string.Empty; /// /// 是否生派工单 /// public string is_create_dispatch { get; set; } = string.Empty; /// /// 产线代码 /// public string? production_linecode { get; set; } /// /// 是否合并 /// public string is_merge { get; set; } = string.Empty; /// /// 组合工单 /// public string? combine_mo_code { get; set; } /// /// 时间戳 /// public string? time_stamp { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public string? create_time { get; set; } = string.Empty; /// /// 修改用户 /// public string? modify_id { get; set; } /// /// 修改时间 /// public string modify_time { get; set; } = string.Empty; /// /// 物料ID /// public string? material_id { get; set; } public string? material_id_id { get; set; } /// /// 已排产数量 /// public string? scheduled_qty { get; set; } = string.Empty; /// /// 父工单id /// public string parent_id { get; set; } = string.Empty; /// /// 获取节点id. /// /// public string id { get; set; } = string.Empty; /// /// 获取节点父id. /// /// public string parentId { get; set; } = string.Empty; /// /// 是否有子级. /// public bool hasChildren { get; set; } /// /// 设置Children. /// public List? children { get; set; } = new List(); /// /// 子节点数量. /// public int num { get; set; } /// /// 是否为子节点. /// public bool isLeaf { get; set; } = false; #endregion } }