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