DepartmentController.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. using GxPress.Auth;
  10. namespace GxPress.Api.AppControllers
  11. {
  12. [Route("api/app/department")]
  13. [ApiController]
  14. [Authorize]
  15. public class DepartmentController : ControllerBase
  16. {
  17. private readonly IDepartmentRepository _departmentRepository;
  18. private readonly IDepartmentService departmentService;
  19. private readonly ILoginContext _loginContext;
  20. public DepartmentController(IDepartmentRepository departmentRepository, IDepartmentService departmentService, ILoginContext _loginContext)
  21. {
  22. _departmentRepository = departmentRepository;
  23. this.departmentService = departmentService;
  24. this._loginContext = _loginContext;
  25. }
  26. /// <summary>
  27. /// 根据部门ID获取成员以及下级部门
  28. /// </summary>
  29. /// <param name="request"></param>
  30. /// <returns></returns>
  31. [HttpPost("user-list")]
  32. public async Task<DepartmentUserResult> GetDepartmentUserResult(DepartmentUserRequest request)
  33. {
  34. request.UserId = _loginContext.AccountId;
  35. return await departmentService.GetDepartmentUserResultAsync(request);
  36. }
  37. [HttpGet("{userId}")]
  38. public async Task<IEnumerable<Entity.Department>> GetUserInDepartmentAsync(int userId)
  39. {
  40. return await departmentService.GetUserInDepartmentAsync(userId);
  41. }
  42. }
  43. }