using SqlSugar; namespace WMS.BZModels.Models.KLHC { /// /// 垛型明细表 /// [Tenant("klhc")] [SugarTable("Bill_BomSetInfo", tableDescription: "垛型明细表")] public partial class BillBomsetinfo : BaseModel { /// /// 垛型id /// [SugarColumn(ColumnDataType = "bigint", IsNullable = false, ColumnDescription = "垛型id")] public long BomSetHdrId { get; set; } /// /// 是否停用 /// [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否停用")] public int IsStop { get; set; } /// /// 是否空置 /// [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否空置")] public int IsEmpty { get; set; } /// /// 坐标号 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "坐标号")] public string XYNo { get; set; } /// /// 物料id /// [SugarColumn(ColumnDataType = "bigint", ColumnDescription = "物料id")] public long MatId { get; set; } /// /// 物料编码 /// [SugarColumn(ColumnDataType = "nvarchar", IsNullable = true, Length = 50, ColumnDescription = "物料编码")] public string MatCode { get; set; } /// /// 正反面 /// [SugarColumn(ColumnDataType = "int", IsNullable = true, ColumnDescription = "正反面")] public int SideNum { get; set; } /// /// 工字轮类型 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true, ColumnDescription = "工字轮类型")] public string SpoolType { get; set; } /// /// 钢丝类型 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true, ColumnDescription = "钢丝类型")] public string SilkType { get; set; } /// /// 钢丝直径 /// [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = true, ColumnDescription = "钢丝直径")] public decimal SilkDiam { get; set; } /// /// 钢丝直径上限 /// [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = true, ColumnDescription = "钢丝直径上限")] public decimal SilkDiamMaxCount { get; set; } /// /// 数量上限 /// [SugarColumn(ColumnDataType = "int", IsNullable = true, ColumnDescription = "数量上限")] public int QtyMaxCount { get; set; } /// /// 是否芯股 /// [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否芯股")] public int IsCore { get; set; } /// /// 09垛型里面的行(1-12) /// [SugarColumn(ColumnDataType = "int", IsNullable = true, ColumnDescription = "09垛型里面的行(1-12)")] public int Row { get; set; } /// /// 是否混合料行(09垛型使用,1是0否) /// [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否混合料行(09垛型使用,1是0否)")] public int IsMixRow { get; set; } /// /// 混合料行编码 /// [SugarColumn(ColumnDataType = "nvarchar", IsNullable = true, Length = 50, ColumnDescription = "混合料行编码")] public string MixRowCode { get; set; } /// /// 第一种第二种第三种 /// [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "第一种第二种第三种")] public int CategoryId { get; set; } } }