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 = true )] public long? WarehouseId { get; set; } /// /// 仓库编码 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string WarehouseCode { get; set; } /// /// 垛型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 ClBarCode { 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 SilkType { get; set; } /// /// 钢丝直径 /// [SugarColumn(ColumnDataType ="decimal" , Length = 18 , IsNullable = false )] public decimal SilkDiam { 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; } } }