DepartmentController.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System.Threading.Tasks;
  2. using GxPress.Repository.Interface;
  3. using GxPress.Request.Department;
  4. using GxPress.Result.Department;
  5. using Microsoft.AspNetCore.Authorization;
  6. using Microsoft.AspNetCore.Mvc;
  7. using GxPress.Service.Interface.Department;
  8. using System.Collections.Generic;
  9. namespace GxPress.Api.AppControllers
  10. {
  11. [Route("api/app/department")]
  12. [ApiController]
  13. [Authorize]
  14. public class DepartmentController : ControllerBase
  15. {
  16. private readonly IDepartmentRepository _departmentRepository;
  17. private readonly IDepartmentService departmentService;
  18. public DepartmentController(IDepartmentRepository departmentRepository, IDepartmentService departmentService)
  19. {
  20. _departmentRepository = departmentRepository;
  21. this.departmentService = departmentService;
  22. }
  23. /// <summary>
  24. /// 根据部门ID获取成员以及下级部门
  25. /// </summary>
  26. /// <param name="request"></param>
  27. /// <returns></returns>
  28. [HttpPost("user-list")]
  29. public async Task<DepartmentUserResult> GetDepartmentUserResult(DepartmentUserRequest request)
  30. {
  31. return await departmentService.GetDepartmentUserResultAsync(request);
  32. }
  33. [HttpGet("{userId}")]
  34. public async Task<IEnumerable<Entity.Department>> GetUserInDepartmentAsync(int userId)
  35. {
  36. return await departmentService.GetUserInDepartmentAsync(userId);
  37. }
  38. }
  39. }