using SqlSugar;
namespace ZR.Model.System
{
///
/// 字典数据表
///
[Tenant("0")]
[SugarTable("sys_dict_data")]
public class SysDictData : SysBase
{
///
/// 字典编码
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
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; }
///
/// 样式属性(其他样式扩展)
///
public string CssClass { get; set; } = string.Empty;
///
/// 表格回显样式
///
public string ListClass { get; set; } = string.Empty;
///
/// 是否默认(Y是 N否)
///
public string IsDefault { get; set; }
///
/// 状态(0正常 1停用)
///
public string Status { get; set; }
}
}