转移.net core 3.1,为.NET 5做准备

This commit is contained in:
ÂëÉñ
2020-10-22 14:59:36 +08:00
parent fd9bca23a7
commit a35d596237
1080 changed files with 175912 additions and 185681 deletions

View File

@@ -1,4 +1,4 @@
using OpenAuth.Repository.Domain;
using System.ComponentModel;
namespace OpenAuth.Repository.Core
{
@@ -8,23 +8,27 @@ namespace OpenAuth.Repository.Core
public abstract class TreeEntity: Entity
{
/// <summary>
/// 节点名称
/// 节点语义ID
/// </summary>
[Description("节点语义ID")]
public string CascadeId { get; set; }
/// <summary>
/// 功能模块名称
/// </summary>
[Description("名称")]
public string Name { get; set; }
/// <summary>
/// 父节点流水号
/// </summary>
[Description("父节点流水号")]
public string ParentId { get; set; }
/// <summary>
/// 父节点名称
/// </summary>
[Description("父节点名称")]
public string ParentName { get; set; }
/// <summary>
/// 节点语义ID
/// </summary>
public string CascadeId { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
}
}