/* * @author : 刘文奇 * @date : 2024/5/10下午1:46:13 * @desc : 容器信息表 */ namespace Admin.NET.Application.Entity { /// /// 容器信息表 /// [SugarTable("wms_base_container", "容器信息表")] public class WmsBaseContainer : EntityBase { /// /// 编号 /// [Required] [SugarColumn(ColumnName = "ContainerCode", ColumnDescription = "编号", Length = 50)] public string ContainerCode { get; set; } /// /// 名称 /// [Required] [SugarColumn(ColumnName = "ContainerName", ColumnDescription = "名称", Length = 50)] public string ContainerName { get; set; } /// /// 类型ID /// [Required] [SugarColumn(ColumnName = "ContainerTypeId", ColumnDescription = "类型ID")] public long ContainerTypeId { get; set; } /// /// 类型编号 /// [SugarColumn(ColumnName = "ContainerTypeCode", ColumnDescription = "类型编号", Length = 50)] public string? ContainerTypeCode { get; set; } /// /// 类型名称 /// [SugarColumn(ColumnName = "ContainerTypeName", ColumnDescription = "类型名称", Length = 50)] public string? ContainerTypeName { get; set; } /// /// 使用次数 /// [Required] [SugarColumn(ColumnName = "UsageCount", ColumnDescription = "使用次数")] public int UsageCount { get; set; } /// /// 长度 /// [SugarColumn(ColumnName = "SpecLength", ColumnDescription = "长度", Length = 10, DecimalDigits = 3)] public decimal? SpecLength { get; set; } /// /// 宽度 /// [SugarColumn(ColumnName = "SpecWidth", ColumnDescription = "宽度", Length = 10, DecimalDigits = 3)] public decimal? SpecWidth { get; set; } /// /// 高度 /// [SugarColumn(ColumnName = "SpecHeight", ColumnDescription = "高度", Length = 10, DecimalDigits = 3)] public decimal? SpecHeight { get; set; } /// /// 限长 /// [SugarColumn(ColumnName = "LimitLength", ColumnDescription = "限长", Length = 10, DecimalDigits = 3)] public decimal? LimitLength { get; set; } /// /// 限宽 /// [SugarColumn(ColumnName = "LimitWidth", ColumnDescription = "限宽", Length = 10, DecimalDigits = 3)] public decimal? LimitWidth { get; set; } /// /// 限高 /// [SugarColumn(ColumnName = "LimitHeight", ColumnDescription = "限高", Length = 10, DecimalDigits = 3)] public decimal? LimitHeight { get; set; } /// /// 载重上限 /// [SugarColumn(ColumnName = "MaxWeight", ColumnDescription = "载重上限", Length = 10, DecimalDigits = 3)] public decimal? MaxWeight { get; set; } /// /// 父容器名称 /// [SugarColumn(ColumnName = "ParentContainerName", ColumnDescription = "父容器名称", Length = 255)] public string? ParentContainerName { get; set; } /// /// 父容器Id /// [SugarColumn(ColumnName = "ParentContainerId", ColumnDescription = "父容器Id")] public long? ParentContainerId { get; set; } /// /// 是否虚拟 /// [SugarColumn(ColumnName = "IsVirtually", ColumnDescription = "是否虚拟")] public bool? IsVirtually { get; set; } /// /// 是否禁用 /// [Required] [SugarColumn(ColumnName = "IsDisabled", ColumnDescription = "是否禁用")] public bool IsDisabled { get; set; } } }