using System; using System.Collections.Generic; using System.Threading.Tasks; using Volo.Abp.Application.Services; namespace Sanhe.Abp.MenuManagement { public interface IMenuAppService : ICrudAppService { /// /// 获取授权策略 /// /// Task> GetAuthPolicies(); } }