using OfficeOpenXml.Attributes;
using SqlSugar;
namespace ZR.Model.System
{
///
/// 字典类型表
///
[SugarTable("sys_dict_type")]
[Tenant("0")]
public class SysDictType : SysBase
{
///
/// 字典主键
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]//主键并且自增 (string不能设置自增)
public long DictId { get; set; }
///
/// 字典名称
///
public string DictName { get; set; }
///
/// 字典类型
///
public string DictType { get; set; }
///
/// 状态 0、正常 1、停用
///
[EpplusIgnore]
public string Status { get; set; }
///
/// 系统内置 Y是 N否
///
public string Type { get; set; }
}
}