Update dataType

This commit is contained in:
2021-05-20 09:12:27 +08:00
parent 9bd6446a76
commit 2b02ec4969
6 changed files with 107 additions and 15 deletions

View File

@@ -15,6 +15,18 @@ namespace Ewide.Core
[Comment("字典类型表")]
public class SysDictType : DEntityBase, IEntityTypeBuilder<SysDictType>
{
/// <summary>
/// 父Id
/// </summary>
[Comment("父Id")]
[Column("Pid", TypeName = "varchar(36)")]
public string Pid { get; set; }
/// <summary>
/// 父Ids
/// </summary>
[Comment("父Ids")]
public string Pids { get; set; }
/// <summary>
/// 名称
/// </summary>