ApiInfoService.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using Attribute;
  2. using Dto;
  3. using Vo;
  4. using Model;
  5. using Model.Base;
  6. using Repository;
  7. using Service;
  8. using Microsoft.AspNetCore.Mvc;
  9. using Common;
  10. namespace Services
  11. {
  12. /// <summary>
  13. /// api接口Service业务层处理
  14. /// </summary>
  15. [AppService(ServiceType = typeof(IApiInfoService), ServiceLifetime = LifeTime.Transient)]
  16. public class ApiInfoService : BaseService<ApiInfo>, IApiInfoService
  17. {
  18. /// <summary>
  19. /// api接口-列表
  20. /// </summary>
  21. /// <param name="parm">请求参数</param>
  22. /// <returns>api接口列表</returns>
  23. public PagedInfo<ApiInfoListVo> List([FromQuery] ApiInfoListDto parm)
  24. {
  25. //开始拼装查询条件
  26. var predicate = Expressionable.Create<ApiInfo>();
  27. predicate = predicate.AndIF(parm.groupId > 0, m => m.groupId == parm.groupId);
  28. predicate = predicate.AndIF(!string.IsNullOrEmpty(parm.apiName), m => m.apiName.Contains(parm.apiName));
  29. var response = Queryable()
  30. .Where(predicate.ToExpression())
  31. .OrderByDescending(m => m.id)
  32. .Includes(m => m.apiGroupJoin)
  33. .ToPage<ApiInfo, ApiInfoListVo>(new PagerInfo());
  34. return response;
  35. }
  36. }
  37. }