This commit is contained in:
Xy
2021-04-23 09:26:08 +00:00
parent 33bbd21272
commit 2c03145259

View File

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