This commit is contained in:
ky_sunl
2021-04-23 11:08:33 +00:00
parent 3e8600ef77
commit b3cea63ab6
11 changed files with 21 additions and 21 deletions

View File

@@ -15,7 +15,7 @@ namespace Dilon.Core
/// 父Id
/// </summary>
[Comment("父Id")]
[Column("父Id", TypeName = "varchar(36)")]
[Column("Pid", TypeName = "varchar(36)")]
public string Pid { get; set; }
/// <summary>
@@ -82,7 +82,7 @@ namespace Dilon.Core
/// 是否可见Y-是N-否)
/// </summary>
[Comment("是否可见")]
[Column("是否可见", TypeName = "bit")]
[Column("Visible", TypeName = "bit")]
public bool Visible { get; set; } = true;
/// <summary>