60 lines
2.1 KiB
C#
60 lines
2.1 KiB
C#
|
|
using SqlSugar;
|
||
|
|
|
||
|
|
namespace YY.Admin.Core;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Jeecg 数据字典项同构表(桌面端)
|
||
|
|
/// </summary>
|
||
|
|
[SugarTable("jeecg_sys_dict_item", "Jeecg数据字典项同构表")]
|
||
|
|
[SysTable]
|
||
|
|
public class JeecgSysDictItem
|
||
|
|
{
|
||
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, Length = 64)]
|
||
|
|
public string Id { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
[SugarColumn(ColumnName = "dict_id", Length = 64, IsNullable = true)]
|
||
|
|
public string? DictId { get; set; }
|
||
|
|
|
||
|
|
[SugarColumn(ColumnName = "dict_name", Length = 255, IsNullable = true)]
|
||
|
|
public string? DictName { get; set; }
|
||
|
|
|
||
|
|
[SugarColumn(ColumnName = "dict_code", Length = 255, IsNullable = true)]
|
||
|
|
public string? DictCode { get; set; }
|
||
|
|
|
||
|
|
[SugarColumn(ColumnName = "dict_type", IsNullable = true)]
|
||
|
|
public int? DictType { get; set; }
|
||
|
|
|
||
|
|
[SugarColumn(ColumnName = "dict_description", Length = 500, IsNullable = true)]
|
||
|
|
public string? DictDescription { get; set; }
|
||
|
|
|
||
|
|
[SugarColumn(ColumnName = "item_text", Length = 255, IsNullable = true)]
|
||
|
|
public string? ItemText { get; set; }
|
||
|
|
|
||
|
|
[SugarColumn(ColumnName = "item_value", Length = 255, IsNullable = true)]
|
||
|
|
public string? ItemValue { get; set; }
|
||
|
|
|
||
|
|
[SugarColumn(ColumnName = "item_description", Length = 500, IsNullable = true)]
|
||
|
|
public string? ItemDescription { get; set; }
|
||
|
|
|
||
|
|
[SugarColumn(ColumnName = "sort_order", IsNullable = true)]
|
||
|
|
public int? SortOrder { get; set; }
|
||
|
|
|
||
|
|
[SugarColumn(ColumnName = "status", IsNullable = true)]
|
||
|
|
public int? Status { get; set; }
|
||
|
|
|
||
|
|
[SugarColumn(ColumnName = "item_color", Length = 100, IsNullable = true)]
|
||
|
|
public string? ItemColor { get; set; }
|
||
|
|
|
||
|
|
[SugarColumn(ColumnName = "create_by", Length = 100, IsNullable = true)]
|
||
|
|
public string? CreateBy { get; set; }
|
||
|
|
|
||
|
|
[SugarColumn(ColumnName = "create_time", IsNullable = true)]
|
||
|
|
public DateTime? CreateTime { get; set; }
|
||
|
|
|
||
|
|
[SugarColumn(ColumnName = "update_by", Length = 100, IsNullable = true)]
|
||
|
|
public string? UpdateBy { get; set; }
|
||
|
|
|
||
|
|
[SugarColumn(ColumnName = "update_time", IsNullable = true)]
|
||
|
|
public DateTime? UpdateTime { get; set; }
|
||
|
|
}
|