You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace Common.Core
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 树状结构实体
|
|
|
|
|
/// </summary>
|
|
|
|
|
public abstract class TreeEntity : StringEntity
|
|
|
|
|
{
|
|
|
|
|
/// <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; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|