You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.6 KiB
88 lines
2.6 KiB
5 months ago
|
// 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995
|
||
|
//
|
||
|
// 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证
|
||
|
|
||
|
namespace Admin.NET.Core;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 系统字典值表
|
||
|
/// </summary>
|
||
|
[SugarTable(null, "系统字典值表")]
|
||
|
[SysTable]
|
||
|
[SugarIndex("index_{table}_C", nameof(Code), OrderByType.Asc)]
|
||
|
public class SysDictData : EntityBase
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 字典类型Id
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "字典类型Id")]
|
||
|
public long DictTypeId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 字典类型
|
||
|
/// </summary>
|
||
|
[Newtonsoft.Json.JsonIgnore]
|
||
|
[System.Text.Json.Serialization.JsonIgnore]
|
||
|
[Navigate(NavigateType.OneToOne, nameof(DictTypeId))]
|
||
|
public SysDictType DictType { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 值
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "值", Length = 128)]
|
||
|
[Required, MaxLength(128)]
|
||
|
public virtual string Value { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 编码
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "编码", Length = 64)]
|
||
|
[Required, MaxLength(64)]
|
||
|
public virtual string Code { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 显示样式-标签颜色
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "显示样式-标签颜色", Length = 16)]
|
||
|
[MaxLength(16)]
|
||
|
public string? TagType { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 显示样式-Style(控制显示样式)
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "显示样式-Style", Length = 512)]
|
||
|
[MaxLength(512)]
|
||
|
public string? StyleSetting { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 显示样式-Class(控制显示样式)
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "显示样式-Class", Length = 512)]
|
||
|
[MaxLength(512)]
|
||
|
public string? ClassSetting { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 排序
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "排序")]
|
||
|
public int OrderNo { get; set; } = 100;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备注
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "备注", Length = 2048)]
|
||
|
[MaxLength(2048)]
|
||
|
public string? Remark { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 拓展数据(保存业务功能的配置项)
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "拓展数据(保存业务功能的配置项)", ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
||
|
public string? ExtData { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 状态
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "状态")]
|
||
|
public StatusEnum Status { get; set; } = StatusEnum.Enable;
|
||
|
}
|