using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace wms.sqlsugar.model { [Tenant("pt")] [SugarTable("Base_ContInfo", "容器基础信息表")] public class ptBaseContainer:BaseModel { /// /// WarehouseId /// [SugarColumn(ColumnDataType = "bigint", IsNullable = false)] public long WarehouseId { get; set; } /// /// IsStop /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int IsStop { get; set; } /// /// ContBarCode /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)] public string ContBarCode { get; set; } /// /// Name /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)] public string Name { get; set; } /// /// TypeCode /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string TypeCode { get; set; } /// /// PrintQty /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int PrintQty { get; set; } /// /// LengthQty /// [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)] public decimal LengthQty { get; set; } /// /// WidthQty /// [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)] public decimal WidthQty { get; set; } /// /// HighQty /// [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)] public decimal HighQty { get; set; } /// /// WeightQty /// [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)] public decimal WeightQty { get; set; } } }