2022-09-16 08:20:09 +08:00
|
|
|
|
using SqlSugar;
|
2021-08-23 16:57:25 +08:00
|
|
|
|
|
|
|
|
|
|
namespace ZR.Model.System
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 字典数据表
|
|
|
|
|
|
/// </summary>
|
2021-11-27 09:43:04 +08:00
|
|
|
|
[Tenant("0")]
|
2021-08-23 16:57:25 +08:00
|
|
|
|
[SugarTable("sys_dict_data")]
|
|
|
|
|
|
public class SysDictData: SysBase
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 字典主键
|
|
|
|
|
|
/// </summary>
|
2022-09-16 08:20:09 +08:00
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
2021-08-23 16:57:25 +08:00
|
|
|
|
public long DictCode{ get; set; }
|
|
|
|
|
|
public int DictSort { get; set; }
|
|
|
|
|
|
public string DictLabel { get; set; }
|
|
|
|
|
|
public string DictValue { get; set; }
|
|
|
|
|
|
public string DictType { get; set; }
|
2021-12-23 07:34:49 +08:00
|
|
|
|
public string CssClass { get; set; } = string.Empty;
|
|
|
|
|
|
public string ListClass { get; set; } = string.Empty;
|
2021-08-23 16:57:25 +08:00
|
|
|
|
public string IsDefault { get; set; }
|
|
|
|
|
|
public string Status { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|