AdminSystemLabelController.cs 1.7 KB

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