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