using Admin.NET.Core;
/*
* @author : 刘文奇
* @date : 2024/5/10下午4:34:48
* @desc : 容器类型
*/
namespace Admin.NET.Application.Entity
{
///
/// 容器类型
///
[SugarTable("wms_base_container_type", "容器类型")]
public class WmsBaseContainerType : EntityBase
{
///
/// 类型编号
///
[Required]
[SugarColumn(ColumnName = "TypeCode", ColumnDescription = "类型编号", Length = 50)]
public string TypeCode { get; set; }
///
/// 类型名称
///
[Required]
[SugarColumn(ColumnName = "TypeName", ColumnDescription = "类型名称", Length = 50)]
public string TypeName { get; set; }
///
/// 是否回收
///
[Required]
[SugarColumn(ColumnName = "IsAllowReclaim", ColumnDescription = "是否回收")]
public bool IsAllowReclaim { get; set; }
///
/// 单位
///
[SugarColumn(ColumnName = "Unit", ColumnDescription = "单位", Length = 50)]
public string? Unit { get; set; }
///
/// 使用期限
///
[SugarColumn(ColumnName = "UsagePeriod", ColumnDescription = "使用期限", Length = 50)]
public string? UsagePeriod { get; set; }
///
/// 是否禁用
///
[Required]
[SugarColumn(ColumnName = "IsDisabled", ColumnDescription = "是否禁用")]
public bool IsDisabled { get; set; }
}
}