AdminDepartmentController.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Entity;
  4. using GxPress.Repository.Interface;
  5. using GxPress.Result.Department;
  6. using GxPress.Service.Interface.Department;
  7. using Microsoft.AspNetCore.Authorization;
  8. using Microsoft.AspNetCore.Mvc;
  9. namespace GxPress.Api.AdminControllers
  10. {
  11. /// <summary>
  12. /// 部门
  13. /// </summary>
  14. [Route("api/admin/department")]
  15. [ApiController]
  16. [Authorize]
  17. public class AdminDepartmentController : ControllerBase
  18. {
  19. private readonly IDepartmentRepository _departmentRepository;
  20. private readonly IDepartmentService _departmentService;
  21. public AdminDepartmentController(IDepartmentRepository departmentRepository, IDepartmentService departmentService)
  22. {
  23. _departmentRepository = departmentRepository;
  24. _departmentService = departmentService;
  25. }
  26. /// <summary>
  27. /// 添加
  28. /// </summary>
  29. /// <param name="request"></param>
  30. /// <returns></returns>
  31. [HttpPost]
  32. public async Task<Department> Add([FromBody] Department request)
  33. {
  34. return await _departmentRepository.AddAsync(request);
  35. }
  36. /// <summary>
  37. /// 详情
  38. /// </summary>
  39. /// <param name="id"></param>
  40. /// <returns></returns>
  41. [HttpGet("{id}")]
  42. public async Task<Department> GetDetail(int id)
  43. {
  44. return await _departmentRepository.GetAsync(id);
  45. }
  46. /// <summary>
  47. /// 删除
  48. /// </summary>
  49. /// <param name="id"></param>
  50. /// <returns></returns>
  51. [HttpDelete("{id}")]
  52. public async Task<bool> Delete(int id)
  53. {
  54. return await _departmentService.DeleteAsync(id);
  55. }
  56. /// <summary>
  57. /// 修改
  58. /// </summary>
  59. /// <param name="id"></param>
  60. /// <param name="request"></param>
  61. /// <returns></returns>
  62. [HttpPut("{id}")]
  63. public async Task<bool> Update(int id, [FromBody] Department request)
  64. {
  65. return await _departmentRepository.UpdateAsync(id, request);
  66. }
  67. /// <summary>
  68. /// 树形结构展示,懒加载
  69. /// </summary>
  70. /// <param name="id"></param>
  71. /// <returns></returns>
  72. [HttpGet("tree")]
  73. public async Task<List<DepartmentTreeResult>> GetTree(int id = 0)
  74. {
  75. return await _departmentRepository.GetTreeAsync(id);
  76. }
  77. /// <summary>
  78. /// 获取全部部门
  79. /// </summary>
  80. /// <returns></returns>
  81. [HttpGet("list")]
  82. public async Task<List<DepartmentTreeResult>> GetAllDepartmentAsync()
  83. {
  84. return await _departmentRepository.GetAllDepartmentAsync();
  85. }
  86. }
  87. }