using System; using System.Collections.Generic; using SqlSugar; using WMS.BZModels; namespace wms.sqlsugar.model.fj { [Tenant("fj")] [SugarTable("Bill_BomSetGrp")] public partial class BillBomsetgrp : BaseModel { /// /// 是否停用 /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int IsStop { get; set; } /// /// IsDelete /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int IsDelete { get; set; } /// /// 垛型编码 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string Code { get; set; } /// /// 垛型名称 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)] public string Name { get; set; } /// /// 短垛型编码 /// [SugarColumn(ColumnDataType = "smallint", IsNullable = false)] public int ShortCode { get; set; } /// /// 帘线物料编码 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true, ColumnDescription = "帘线物料编码")] public string ProMaterCode { get; set; } /// /// BomCode(投料信息) /// [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true, ColumnDescription = "投料物流编码")] public string ProCode { get; set; } /// /// /// [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = false)] public string BomCode { get; set; } /// /// /// [SugarColumn(ColumnDataType = "nvarchar", Length = 500, IsNullable = false)] public string BomName { get; set; } /// /// 工字轮个数 /// [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "工字轮个数")] public int HWCountQty { get; set; } /// /// 总工字轮个数 /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public int TotalQty { get; set; } /// /// 托盘类型 1:09型托盘,2:非09托盘 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "托盘类型")] public string TpTypeCode { get; set; } /// /// 类型 1A级品正常 2B级品 3异常 /// [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "类型 1A级品正常 2B级品 3异常")] public int Category { get; set; } /// /// 层数 /// [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "层数")] public int LayerCountQty { get; set; } /// /// 非业务相关(区分表单),记录类型DFM15 DFM9 DFM6 DOF2等类型的跺型 /// [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "非业务相关,记录类型DFM15 DFM9 DFM6 DOF2等类型的跺型")] public int StampType { get; set; } /// /// 非业务相关(区分表单),记录类型 DFM6 DOF4等类型的子跺型 /// [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "非业务相关,记录类型DFM15 DFM9 DFM6 DOF2等类型的跺型")] public int StampChildType { get; set; } /// /// IsTruss /// [SugarColumn(ColumnDataType = "bit", IsNullable = true)] public bool? IsTruss { get; set; } } }