using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.BZModels.Dto.FJ.BillBom { public class BillBomsetDto { /// /// Id /// public string Id { get; set; } /// /// IsStop /// public int IsStop { get; set; } /// /// IsDelete /// public int IsDelete { get; set; } /// /// Code /// public string Code { get; set; } /// /// Name /// public string Name { get; set; } /// /// 帘线物料编码 /// public string ProMaterCode { get; set; } /// /// 投料信息编码 /// public string ProCode { get; set; } public string BomCode { get; set; } public string BomName { get; set; } /// /// 工字轮个数 /// public int HWCountQty { get; set; } /// /// 总工字轮个数 /// public int TotalQty { get; set; } /// /// 类型 /// public int Category { get; set; } /// /// 托盘类型 /// public string TpTypeCode { get; set; } /// /// 层数 /// public int LayerCountQty { get; set; } /// /// 跺型类型(区分表单) /// public string StampType { get; set; } public string StampChildType { get; set; } /// /// IsTruss /// public string IsTruss { get; set; } /// /// ShortCode /// public int ShortCode { get; set; } public List Bomsetinfos { get; set; } } public class BillBomsetgrpDto { /// /// Id /// public string Id { get; set; } /// /// IsStop /// public int IsStop { get; set; } /// /// IsDelete /// public int IsDelete { get; set; } /// /// Code /// public string Code { get; set; } /// /// Name /// public string Name { get; set; } /// /// ShortCode /// public int ShortCode { get; set; } /// /// 帘线物料编码 /// public string ProMaterCode { get; set; } /// /// 投料物流编码 /// public string ProCode { get; set; } public string BomCode { get; set; } public string BomName { get; set; } /// /// 工字轮个数 /// public int HWCountQty { get; set; } /// /// 总工字轮个数 /// public int TotalQty { get; set; } /// /// 类型 /// public int Category { get; set; } /// /// 托盘类型 /// public string TpTypeCode { get; set; } /// /// 层数 /// public int LayerCountQty { get; set; } /// /// IsTruss /// public int? IsTruss { get; set; } /// /// 跺型类型(区分表单) /// public string StampType { get; set; } public string StampChildType { get; set; } /// /// Memo /// public string Memo { get; set; } /// /// AddWho /// public string AddWho { get; set; } /// /// AddTime /// public DateTime AddTime { get; set; } /// /// EditWho /// public string EditWho { get; set; } /// /// EditTime /// public DateTime EditTime { get; set; } } public class BillBomsetgrpQueryDto : PagerInfo { /// /// IsStop /// public string IsStop { get; set; } /// /// IsDelete /// public string IsDelete { get; set; } /// /// Code /// public string Code { get; set; } /// /// Name /// public string Name { get; set; } /// /// 帘线物料编码 /// public string ProMaterCode { get; set; } public string ShortCode { get; set; } /// /// 投料物流编码 /// public string ProCode { get; set; } public string BomCode { get; set; } public string BomName { get; set; } /// /// 跺型类型(区分表单) /// public string StampType { get; set; } } /// /// 排库 /// public class BillPaiKuDto : PagerInfo { /// /// IsStop /// public string IsStop { get; set; } /// /// IsDelete /// public string IsDelete { get; set; } /// /// Code /// public string Code { get; set; } /// /// Name /// public string Name { get; set; } /// /// 帘线物料编码 /// public string ProMaterCode { get; set; } public string ShortCode { get; set; } /// /// 投料物流编码 /// public string ProCode { get; set; } public string BomCode { get; set; } public string BomName { get; set; } /// /// 跺型类型(区分表单) /// public string StampType { get; set; } } }