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 icmo_code { 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 { public string defective_category { get; set; } /// /// Desc:分类数量 /// Default: /// Nullable:True /// public int? category_qty { get; set; } public List items { get; set; } } }