AdminNavigationController.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Repository.Interface.Navigation;
  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/navigation")]
  12. [ApiController]
  13. [Authorize]
  14. public class AdminNavigationController : ControllerBase
  15. {
  16. private readonly INavigationRepository navigationRepository;
  17. public AdminNavigationController(INavigationRepository navigationRepository)
  18. {
  19. this.navigationRepository = navigationRepository;
  20. }
  21. /// <summary>
  22. /// 列表
  23. /// </summary>
  24. /// <returns></returns>
  25. [HttpGet]
  26. public async Task<IEnumerable<Entity.Navigations.Navigation>> GetList()
  27. {
  28. return await navigationRepository.GetAllAsync();
  29. }
  30. /// <summary>
  31. /// 添加导航
  32. /// </summary>
  33. /// /// <param name="note"></param>
  34. /// <returns></returns>
  35. [HttpPost]
  36. public async Task<int> Insert(Entity.Navigations.Navigation note)
  37. {
  38. return await navigationRepository.InsertAsync(note);
  39. }
  40. /// <summary>
  41. /// 修改导航
  42. /// </summary>
  43. /// <param name="note"></param>
  44. /// <returns></returns>
  45. [HttpPut]
  46. public async Task<bool> Update(Entity.Navigations.Navigation note)
  47. {
  48. return await navigationRepository.UpdateAsync(note);
  49. }
  50. }
  51. }