ThesaurusController.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Entity;
  4. using GxPress.Repository.Interface;
  5. using GxPress.Request.Thesaurus;
  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/thesaurus")]
  14. [ApiController]
  15. [Authorize]
  16. public class ThesaurusController : ControllerBase
  17. {
  18. private readonly IThesaurusRepository _thesaurusRepository;
  19. public ThesaurusController( IThesaurusRepository thesaurusRepository)
  20. {
  21. _thesaurusRepository = thesaurusRepository;
  22. }
  23. /// <summary>
  24. /// app获取热词冷词
  25. /// </summary>
  26. /// <param name="request"></param>
  27. /// <returns></returns>
  28. [HttpPost("get-thesaurus")]
  29. public async Task<IEnumerable<Thesaurus>> GetAppVersion(ThesaurusSearchRequest request)
  30. {
  31. return await _thesaurusRepository.GetTopListAsync(request);
  32. }
  33. }
  34. }