using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace wms.sqlsugar.model.sx { [Tenant("sx")] [SugarTable("Bill_PackInfo")] public class BillPackInfo:BaseModel { /// /// 包装代码 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string PackCode { get; set; } /// /// 包装描述 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string PackDesc { get; set; } /// /// 包装方式代码 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string PackMethodCode { get; set; } /// /// 包装方式 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string PackMethod { get; set; } /// /// 工字轮型号 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string Spool { get; set; } /// /// 工字轮标准数量 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string SpoolNum { get; set; } /// /// 空工字轮数量 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string EmptySpoolNum { get; set; } /// /// 每箱层数量 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string LayersNum { get; set; } /// /// 每层工字轮数量 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string LayersSpoolNum { get; set; } /// /// 物料编码 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true)] public string MatCode { get; set; } /// /// 物料描述 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true)] public string MatName { get; set; } /// /// 数量 /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public int Count { get; set; } /// /// 单位 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string UnitName { get; set; } /// /// 物料单重 /// [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)] public decimal Weight { get; set; } } }