2021-12-04 13:15:57 +08:00
|
|
|
|
using OfficeOpenXml.Attributes;
|
2021-08-23 16:57:25 +08:00
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
|
|
namespace ZR.Model.System
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 字典类型表
|
|
|
|
|
|
/// </summary>
|
2021-12-19 19:52:59 +08:00
|
|
|
|
[SugarTable("sys_dict_type")]
|
2021-11-27 09:43:04 +08:00
|
|
|
|
[Tenant("0")]
|
2021-08-23 16:57:25 +08:00
|
|
|
|
public class SysDictType : SysBase
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 字典主键
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]//主键并且自增 (string不能设置自增)
|
|
|
|
|
|
public long DictId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 字典名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string DictName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 字典类型
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string DictType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 状态 0、正常 1、停用
|
|
|
|
|
|
/// </summary>
|
2021-12-04 13:15:57 +08:00
|
|
|
|
[EpplusIgnore]
|
2021-08-23 16:57:25 +08:00
|
|
|
|
public string Status { get; set; }
|
2021-12-19 19:52:59 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 系统内置 Y是 N否
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Type { get; set; }
|
2021-08-23 16:57:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|