IApiGroupService.cs 504 B

123456789101112131415161718192021222324252627282930
  1. using Dto;
  2. using Vo;
  3. using Model;
  4. using Model.Base;
  5. using Microsoft.AspNetCore.Mvc;
  6. namespace Services
  7. {
  8. public interface IApiGroupService : IBaseService<ApiGroup>
  9. {
  10. /// <summary>
  11. /// api接口分组-列表
  12. /// </summary>
  13. /// <param name="parm">请求参数</param>
  14. /// <returns>api接口分组列表</returns>
  15. PagedInfo<ApiGroupListVo> List([FromQuery] ApiGroupListDto parm);
  16. List<string> GroupsForAdmin(string value);
  17. }
  18. }