using System.ComponentModel; namespace Common.Core { /// /// 树状结构实体 /// public abstract class TreeEntity : StringEntity { /// /// 节点语义ID /// [Description("节点语义ID")] public string CascadeId { get; set; } /// /// 功能模块名称 /// [Description("名称")] public string Name { get; set; } /// /// 父节点流水号 /// [Description("父节点流水号")] public string ParentId { get; set; } /// /// 父节点名称 /// [Description("父节点名称")] public string ParentName { get; set; } } }