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