using Admin.NET.Core;
|
|
/*
|
* @author : 刘文奇
|
* @date : 2024/5/10下午1:49:19
|
* @desc : 物料类型表
|
*/
|
namespace Admin.NET.Application.Entity
|
{
|
/// <summary>
|
/// 物料类型表
|
/// </summary>
|
[SugarTable("wms_base_material_type", "物料类型表")]
|
public class WmsBaseMaterialType : EntityBase
|
{
|
|
|
/// <summary>
|
/// 类型编号
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "MaterialTypeCode", ColumnDescription = "类型编号", Length = 50)]
|
|
public string MaterialTypeCode { get; set; }
|
|
|
/// <summary>
|
/// 类型描述
|
/// </summary>
|
[SugarColumn(ColumnName = "MaterialTypeDescr", ColumnDescription = "类型描述", Length = 255)]
|
|
public string? MaterialTypeDescr { get; set; }
|
|
|
/// <summary>
|
/// 类型名称
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "MaterialTypeName", ColumnDescription = "类型名称", Length = 50)]
|
|
public string MaterialTypeName { get; set; }
|
|
|
/// <summary>
|
/// 是否禁用
|
/// </summary>
|
[Required]
|
|
[SugarColumn(ColumnName = "IsDisabled", ColumnDescription = "是否禁用")]
|
public bool IsDisabled { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
}
|