38 lines
929 B
C#
38 lines
929 B
C#
using System;
|
|
using IRaCIS.Core.Domain.Models;
|
|
|
|
namespace IRaCIS.Core.Test.GenerateContextModelFolder;
|
|
|
|
[Comment("后台 - 字典表(需要同步)")]
|
|
[Table("Dictionary")]
|
|
public partial class Dictionary: BaseFullAuditEntity
|
|
{
|
|
[StringLength(400)]
|
|
public string ChildGroup { get; set; } = null!;
|
|
|
|
public string Code { get; set; } = null!;
|
|
|
|
public Guid? ConfigTypeId { get; set; }
|
|
|
|
[Comment(" 字典类型- 枚举|bool|下拉框")]
|
|
public int DataTypeEnum { get; set; }
|
|
|
|
[StringLength(512)]
|
|
public string Description { get; set; } = null!;
|
|
|
|
[Comment(" 是否字典类型配置")]
|
|
public bool IsConfig { get; set; }
|
|
|
|
public bool IsEnable { get; set; }
|
|
|
|
public Guid? ParentId { get; set; }
|
|
|
|
public int ShowOrder { get; set; }
|
|
|
|
[StringLength(400)]
|
|
public string Value { get; set; } = null!;
|
|
|
|
[StringLength(400)]
|
|
public string ValueCN { get; set; } = null!;
|
|
}
|