SlideController.cs 1023 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System.Threading.Tasks;
  2. using GxPress.Common.Page;
  3. using GxPress.Entity;
  4. using GxPress.Repository.Interface;
  5. using GxPress.Request.Slide;
  6. using Microsoft.AspNetCore.Authorization;
  7. using Microsoft.AspNetCore.Mvc;
  8. namespace GxPress.Api.AppControllers
  9. {
  10. /// <summary>
  11. /// 审批轮播
  12. /// </summary>
  13. [Route("api/app/slide")]
  14. [ApiController]
  15. [Authorize]
  16. public class SlideController : ControllerBase
  17. {
  18. private readonly ISlideRepository _slideRepository;
  19. public SlideController(ISlideRepository slideRepository)
  20. {
  21. _slideRepository = slideRepository;
  22. }
  23. /// <summary>
  24. /// App列表
  25. /// </summary>
  26. /// <returns></returns>
  27. [HttpGet("list")]
  28. public async Task<PagedList<Slide>> GetList()
  29. {
  30. var request = new SlideSearchRequest();
  31. request.TypeId = 1;
  32. var result = await _slideRepository.GetListAsync(request);
  33. return result;
  34. }
  35. }
  36. }