AdminDepartmentController.cs 3.2 KB

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