using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using DbModels; using Tnb.ProductionMgr.Entities; namespace Tnb.ProductionMgr.Entities.Dto.PrdManage { /// /// 提报记录统计明细 /// public class SelfTestScrappedOutput { /// /// Desc:任务单号 /// Default: /// Nullable:True /// public string icmo_code { get; set; } /// /// Desc:报废数量 /// Default: /// Nullable:True /// public int scrap_qty { get; set; } /// /// 自检报废集合 /// public List categoryItems { get; set; } } public class SelfTestScrappedOutputItem { public string defective_category { get; set; } /// /// Desc:分类数量 /// Default: /// Nullable:True /// public int? category_qty { get; set; } public List items { get; set; } } }