using SqlSugar;
namespace wms.sqlsugar.model.fj
{
///
/// 垛形主表
///
[Tenant("fj")]
[SugarTable("Bill_BomSetGrp", tableDescription: "垛形主表")]
public partial class BillBomsetgrp : BaseModel
{
///
/// 是否停用
///
[SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否停用")]
public int IsStop { get; set; }
///
/// 垛型编码
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "垛型编码")]
public string Code { get; set; }
///
/// 短垛型编码
///
[SugarColumn(ColumnDataType = "smallint", IsNullable = false, ColumnDescription = "短垛型编码")]
public short ShortCode { get; set; }
///
/// 垛型名称
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false, ColumnDescription = "垛型名称")]
public string Name { get; set; }
///
/// BomCode(投料信息)
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = false, ColumnDescription = "BomCode(投料信息)")]
public string BomCode { get; set; }
///
/// 帘线物料编码
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "帘线物料编码")]
public string ProMaterCode { get; set; }
///
/// 工字轮个数
///
[SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "工字轮个数")]
public int HWCountQty { get; set; }
///
/// 托盘类型
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "托盘类型")]
public string TpTypeCode { get; set; }
///
/// 层数
///
[SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "层数")]
public int LayerCountQty { get; set; }
///
/// 垛型大类
///
[SugarColumn(ColumnDataType = "int", IsNullable = true, ColumnDescription = "垛型大类")]
public int StampType { get; set; }
}
}