using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace wms.sqlsugar.model.cp { [Tenant("cp")] [SugarTable("base_container", "物料基础信息表")] public class cpBaseContainer:BaseModel { /// /// 容器编码 /// [SugarColumn(ColumnName = "code", ColumnDataType = "nvarchar", Length = 100)] public string Code { get; set; } /// /// 容器名称 /// [SugarColumn(ColumnName = "name", ColumnDataType = "nvarchar", Length = 100)] public string Name { get; set; } /// /// 容器类型 /// [SugarColumn(ColumnName = "container_type", ColumnDataType = "nvarchar", Length = 100)] public string ContainerType { get; set; } /// /// 容器描述 /// [SugarColumn(ColumnName = "desc", ColumnDataType = "nvarchar", Length = 200, IsNullable = true)] public string Desc { get; set; } /// /// 行停用(0正常 1停用) /// [SugarColumn(ColumnName = "row_stop")] public int RowStop { get; set; } = 0; } }