using Mapster; namespace Model { /// /// 字典表 sys_dict /// [SugarTable("sys_dict", "字典表")] [Tenant("0")] public class SysDict { /// /// 编号 /// [SugarColumn(ColumnDescription = "编号", IsPrimaryKey = true, ColumnName = "id")] public long id { get; set; } /// /// 字典类型 /// [SugarColumn(ColumnDescription = "字典类型", Length = 100, ColumnName = "dict_type")] public string dictType { get; set; } /// /// 描述 /// [SugarColumn(ColumnDescription = "描述", Length = 100, ColumnName = "description")] public string description { get; set; } /// /// 创建人 /// [SugarColumn(ColumnDescription = "创建人", Length = 64, ColumnName = "create_by")] public string createBy { get; set; } /// /// 修改人 /// [SugarColumn(ColumnDescription = "修改人", Length = 64, ColumnName = "update_by")] public string updateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_time")] public DateTime? createTime { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_time")] public DateTime? updateTime { get; set; } /// /// 备注信息 /// [SugarColumn(ColumnDescription = "备注信息", Length = 255, ColumnName = "remarks")] public string remarks { get; set; } /// /// 系统标志 /// [SugarColumn(ColumnDescription = "系统标志", Length = 1, ColumnName = "system_flag")] public string systemFlag { get; set; } /// /// 删除标志 /// [SugarColumn(ColumnDescription = "删除标志", Length = 1, ColumnName = "del_flag")] public string delFlag { get; set; } } }