IApiInfoService.cs 469 B

123456789101112131415161718192021222324252627282930313233
  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 IApiInfoService : IBaseService<ApiInfo>
  9. {
  10. /// <summary>
  11. /// api接口-列表
  12. /// </summary>
  13. /// <param name="parm">请求参数</param>
  14. /// <returns>api接口列表</returns>
  15. PagedInfo<ApiInfoListVo> List([FromQuery] PagerInfo page, [FromQuery] ApiInfoListDto parm);
  16. }
  17. }