using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using Infrastructure.Domain; namespace Application.Domain.Entities { [Display(Name = "权限分类")] public class PermissionCategory : BaseTreeEntity { public List Permissions { get; set; } = new List(); } }