using System;
using SqlSugar;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Admin.Core.Model.Sys
{
///
///字典数据表实体类
///
[Table("SysDictData")]
[SugarTable("SysDictData", "admin_sqlite")]
public class SysDictData
{
///
/// 字典编码
///
[Key]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[Required]
public int 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; }
///
/// 表格回显样式
///
public string ListClass { get; set; }
///
/// 是否默认(Y是 N否)
///
public string IsDefault { get; set; }
///
/// 状态(0正常 1停用)
///
public int? Status { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 创建者
///
public string CreateBy { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 更新者
///
public string UpdateBy { get; set; }
///
/// 更新时间
///
public DateTime? UpdateTime { get; set; }
}
}