FeedbackController.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using System.Threading.Tasks;
  2. using GxPress.Auth;
  3. using GxPress.Entity;
  4. using GxPress.Repository.Interface;
  5. using GxPress.Request.Feedback;
  6. using Microsoft.AspNetCore.Authorization;
  7. using Microsoft.AspNetCore.Mvc;
  8. using Microsoft.Extensions.Logging;
  9. namespace GxPress.Api.AppControllers
  10. {
  11. /// <summary>
  12. /// 意见反馈
  13. /// </summary>
  14. [Route("api/app/Feedback")]
  15. [ApiController]
  16. [Authorize]
  17. public class FeedbackController : ControllerBase
  18. {
  19. private readonly ILogger<AppVersionController> _logger;
  20. private readonly IFeedbackRepository _feedbackRepository;
  21. private readonly ILoginContext _loginContext;
  22. public FeedbackController(ILogger<AppVersionController> logger, IFeedbackRepository feedbackRepository,ILoginContext loginContext)
  23. {
  24. _logger = logger;
  25. _feedbackRepository = feedbackRepository;
  26. _loginContext = loginContext;
  27. }
  28. ///// <summary>
  29. ///// 查询分页数据
  30. ///// </summary>
  31. ///// <param name="request"></param>
  32. ///// <returns></returns>
  33. //[HttpPost("page")]
  34. //[AllowAnonymous]
  35. //public async Task<PagedList<FeedbackPageResult>> GetPageList([FromBody] FeedbackPageRequest request)
  36. //{
  37. // return await _feedbackRepository.GetPagedList(request);
  38. //}
  39. /// <summary>
  40. /// 添加
  41. /// </summary>
  42. /// <param name="request"></param>
  43. /// <returns></returns>
  44. [HttpPut("add")]
  45. public async Task<bool> Add([FromBody] FeedbackInRequest request)
  46. {
  47. request.UserId = _loginContext.AccountId;
  48. var feedback = new Feedback
  49. {
  50. UserId = request.UserId, Content = request.Content, FeedbackType = request.FeedbackType
  51. };
  52. return await _feedbackRepository.InsertAsync(feedback) > 0;
  53. }
  54. }
  55. }