AdminSystemLabelController.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. /// <summary>
  28. /// 修改
  29. /// </summary>
  30. /// <param name="request"></param>
  31. /// <returns></returns>
  32. [HttpPut]
  33. public async Task<bool> UpdateAsync(SystemLabelUpRequest request)
  34. {
  35. return await _repository.UpdateAsync(request);
  36. }
  37. [HttpGet]
  38. public async Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync()
  39. {
  40. return await _repository.GetAllAsync();
  41. }
  42. /// <summary>
  43. /// 删除
  44. /// </summary>
  45. /// <param name="id"></param>
  46. /// <returns></returns>
  47. [HttpDelete("{id}")]
  48. public async Task<bool> DeleteAsync(int id)
  49. {
  50. return await _repository.DeleteAsync(id);
  51. }
  52. }
  53. }