123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System.Threading.Tasks;
- using GxPress.Common.Page;
- using GxPress.Entity;
- using GxPress.Repository.Interface;
- using GxPress.Request.Slide;
- using Microsoft.AspNetCore.Authorization;
- using Microsoft.AspNetCore.Mvc;
- namespace GxPress.Api.AppControllers
- {
- /// <summary>
- /// 审批轮播
- /// </summary>
- [Route("api/app/slide")]
- [ApiController]
- [Authorize]
- public class SlideController : ControllerBase
- {
- private readonly ISlideRepository _slideRepository;
- public SlideController(ISlideRepository slideRepository)
- {
- _slideRepository = slideRepository;
- }
- /// <summary>
- /// App列表
- /// </summary>
- /// <returns></returns>
- [HttpGet("list")]
- public async Task<PagedList<Slide>> GetList()
- {
- var request = new SlideSearchRequest();
- request.TypeId = 1;
- var result = await _slideRepository.GetListAsync(request);
- return result;
- }
- }
- }
|