AdminSystemLabelController.cs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Common.Page;
  4. using GxPress.Repository.Interface.SystemLabel;
  5. using GxPress.Request.SystemLabel;
  6. using GxPress.Result.SystemLabel;
  7. using GxPress.Service.Interface.SystemLabel;
  8. using Microsoft.AspNetCore.Authorization;
  9. using Microsoft.AspNetCore.Mvc;
  10. namespace GxPress.Api.AdminControllers
  11. {
  12. /// <summary>
  13. /// 系统标签管理
  14. /// </summary>
  15. [Route("api/admin/system-label")]
  16. [ApiController]
  17. [Authorize]
  18. public class AdminSystemLabelController : ControllerBase
  19. {
  20. private readonly ISystemLabelRepository _repository;
  21. private readonly ISystemLabelService systemLabelService;
  22. public AdminSystemLabelController(ISystemLabelRepository repository, ISystemLabelService systemLabelService)
  23. {
  24. _repository = repository;
  25. this.systemLabelService = systemLabelService;
  26. }
  27. /// <summary>
  28. /// 添加
  29. /// </summary>
  30. /// <param name="note"></param>
  31. /// <returns></returns>
  32. [HttpPost]
  33. public async Task<int> Insert(Entity.SystemLabel.SystemLabel note)
  34. {
  35. return await _repository.InsertAsync(note);
  36. }
  37. /// <summary>
  38. /// 修改
  39. /// </summary>
  40. /// <param name="request"></param>
  41. /// <returns></returns>
  42. [HttpPut]
  43. public async Task<bool> UpdateAsync(SystemLabelUpRequest request)
  44. {
  45. return await _repository.UpdateAsync(request);
  46. }
  47. /// <summary>
  48. /// 获取标签列表
  49. /// </summary>
  50. /// <returns></returns>
  51. [HttpPost("list")]
  52. public async Task<PagedList<SystemLabelResult>> GetAllAsync(Common.Page.PageParameter pageParameter)
  53. {
  54. return await systemLabelService.GetAllAsync(pageParameter);
  55. }
  56. /// <summary>
  57. /// 删除
  58. /// </summary>
  59. /// <param name="id"></param>
  60. /// <returns></returns>
  61. [HttpDelete("{id}")]
  62. public async Task<bool> DeleteAsync(int id)
  63. {
  64. return await _repository.DeleteAsync(id);
  65. }
  66. }
  67. }