using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.ProductionMgr.Entities.Dto.PrdManage { /// /// 自检报废输入类 /// public class SelfTestScrappedInput { /// /// Desc:任务单号 /// Default: /// Nullable:True /// //public string mo_task_code { get; set; } /// /// 生产任务单Id /// public string mo_task_id { get; set; } /// /// Desc:报废数量 /// Default: /// Nullable:True /// public int scrap_qty { get; set; } /// /// Desc:备注 /// Default: /// Nullable:True /// public string remark { get; set; } /// /// 自检报废集合 /// public List categoryItems { get; set; } } public class SelfTestScrappedInputItem { /// /// 次品分类Id /// public string category_id { get; set; } /// /// Desc:分类数量 /// Default: /// Nullable:True /// //public int? category_qty { get; set; } public List items { get; set; } } public class defectItem { /// /// Desc:次品项 /// Default: /// Nullable:True /// public string defective_item { get; set; } /// /// Desc:次品项数量 /// Default: /// Nullable:True /// public int defective_item_qty { get; set; } } }