using Infrastructure.Domain; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Application.Domain.Entities { [Display(Name = "权限分类")] [Scope(ScopeAttribute.PlatformAll | ScopeAttribute.OrganAll)] [Group("基础设置", "Admin")] public class PermissionCategory : BaseTreeEntity { public List Permissions { get; set; } = new List(); } }