AdminSystemLabelController.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Repository.Interface.SystemLabel;
  4. using Microsoft.AspNetCore.Authorization;
  5. using Microsoft.AspNetCore.Mvc;
  6. namespace GxPress.Api.AdminControllers
  7. {
  8. /// <summary>
  9. /// 系统标签管理
  10. /// </summary>
  11. [Route("api/admin/system-label")]
  12. [ApiController]
  13. [Authorize]
  14. public class AdminSystemLabelController : ControllerBase
  15. {
  16. private readonly ISystemLabelRepository _repository;
  17. public AdminSystemLabelController(ISystemLabelRepository repository)
  18. {
  19. _repository = repository;
  20. }
  21. [HttpPost]
  22. public async Task<int> Insert(Entity.SystemLabel.SystemLabel note)
  23. {
  24. return await _repository.InsertAsync(note);
  25. }
  26. [HttpPut]
  27. public async Task<bool> UpdateAsync(Entity.SystemLabel.SystemLabel note)
  28. {
  29. return await _repository.UpdateAsync(note);
  30. }
  31. [HttpGet]
  32. public async Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync()
  33. {
  34. return await _repository.GetAllAsync();
  35. }
  36. }
  37. }