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.
54 lines
1.3 KiB
54 lines
1.3 KiB
2 years ago
|
namespace Cis.Application.Sys;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 系统字典值表
|
||
|
/// </summary>
|
||
|
[SugarTable("sys_dict_data", "系统字典值表")]
|
||
|
public class SysDictData : EntityBase
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 字典类型Id
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "字典类型Id")]
|
||
|
public long DictTypeId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 字典类型
|
||
|
/// </summary>
|
||
|
[SugarColumn(IsIgnore = true)]
|
||
|
[Navigate(NavigateType.OneToOne, nameof(DictTypeId))]
|
||
|
public SysDictType DictType { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 值
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "值", Length = 128)]
|
||
|
[Required, MaxLength(128)]
|
||
|
public string Value { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 编码
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "编码", Length = 64)]
|
||
|
[Required, MaxLength(64)]
|
||
|
public string Code { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 排序
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "排序")]
|
||
|
public int Order { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备注
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "备注", Length = 128)]
|
||
|
[MaxLength(128)]
|
||
|
public string Remark { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 状态
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "状态")]
|
||
|
public StatusEnum Status { get; set; } = StatusEnum.Enable;
|
||
|
}
|