AdminSystemLabelController.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. [HttpPost]
  23. public async Task<int> Insert(Entity.SystemLabel.SystemLabel note)
  24. {
  25. return await _repository.InsertAsync(note);
  26. }
  27. [HttpPut]
  28. public async Task<bool> UpdateAsync(SystemLabelUpRequest request)
  29. {
  30. return await _repository.UpdateAsync(request);
  31. }
  32. [HttpGet]
  33. public async Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync()
  34. {
  35. return await _repository.GetAllAsync();
  36. }
  37. }
  38. }