using SqlSugar; namespace WCS.WorkEngineering.Model.WMS { /// /// 垛形主表 /// [Tenant("fj")] [SugarTable("Bill_BomSetGrp", tableDescription: "垛形主表")] public partial class BillBomsetgrp { /// /// ID /// [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, ColumnDescription = "ID")] public virtual long Id { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "Memo", Length = 500, IsNullable = true, ColumnDataType = "nvarchar", DefaultValue = "", ColumnDescription = "备注")] public virtual string Memo { get; set; } /// /// 创建用户 /// [SugarColumn(ColumnName = "AddWho", Length = 50, ColumnDataType = "nvarchar", DefaultValue = "", IsNullable = false, ColumnDescription = "创建用户")] public virtual string AddWho { get; set; } = ""; /// /// 更新用户 /// [SugarColumn(ColumnName = "EditWho", Length = 50, ColumnDataType = "nvarchar", DefaultValue = "", IsNullable = false, ColumnDescription = "更新用户")] public virtual string EditWho { get; set; } = ""; /// /// 创建时间 /// [SugarColumn(ColumnName = "AddTime", DefaultValue = "1900-1-1", IsNullable = false, ColumnDescription = "创建时间")] public virtual DateTime AddTime { get; set; } = DateTime.Now; /// /// 更新时间 /// [SugarColumn(ColumnName = "EditTime", DefaultValue = "1900-1-1", IsNullable = false, ColumnDescription = "更新时间")] public virtual DateTime EditTime { get; set; } = DateTime.Now; /// /// 是否停用 /// [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; } /// /// 是否在桁架进行码垛 /// [SugarColumn(IsNullable = true, ColumnDescription = "是否在桁架进行码垛")] public bool IsTruss { get; set; } } }