using System; using System.Collections.Generic; using SqlSugar; namespace wms.sqlsugar.model.fj { /// /// /// [Tenant("fj")] [SugarTable("Bill_BomSetGrp")] public partial class BillBomsetgrp : BaseModel { /// /// IsStop /// [SugarColumn(ColumnDataType ="int" , IsNullable = false )] public int IsStop { get; set; } /// /// WarehouseId /// [SugarColumn(ColumnDataType ="bigint" , IsNullable = false )] public long WarehouseId { get; set; } /// /// 仓库编码 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string WarehouseCode { 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; } /// /// BomId /// [SugarColumn(ColumnDataType ="bigint" , IsNullable = false )] public long BomId { get; set; } /// /// BomCode(投料信息) /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = false )] public string BomCode { get; set; } /// /// 帘线物料id /// [SugarColumn(ColumnDataType ="bigint" , IsNullable = false )] public long PMatId { get; set; } /// /// 帘线物料编码 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string PMatCode { get; set; } /// /// 工字轮个数 /// [SugarColumn(ColumnDataType ="int" , IsNullable = false )] public int HWCountQty { get; set; } /// /// 托盘类型 /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = false )] public string TpTypeCode { get; set; } /// /// 层数 /// [SugarColumn(ColumnDataType ="int" , IsNullable = false )] public int LayerCountQty { get; set; } } }