using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
/*
* @author : 刘文奇
* @date : 2024/4/23下午4:07:29
* @desc : 单位基础信息
*/
namespace Admin.NET.Core
{
///
/// 单位基础信息
///
[Table("wms_unit")]
[Comment("单位基础信息")]
public class WmsUnit : DEntityBase
{
///
/// 编号
///
[Comment("编号")]
[Required]
[MaxLength(50)]
public string UnitCode { get; set; }
///
/// 名称
///
[Comment("名称")]
[Required]
[MaxLength(50)]
public string UnitName { get; set; }
///
/// 描述
///
[Comment("描述")]
[MaxLength(50)]
public string UnitDesc { get; set; }
///
/// 是否禁用
///
[Comment("是否禁用")]
[Required]
public bool IsDisabled { get; set; }
}
}