|
@@ -206,7 +206,7 @@ public class UserController {
|
|
|
//工作间详情
|
|
|
@GetMapping("/DeptSupervisor")
|
|
|
@Operation(summary = "获得工作间下的导师")
|
|
|
- public CommonResult<List<AdminUserDO>> getDeptSupervisor(@RequestParam Long deptId) {
|
|
|
+ public CommonResult<List<AdminUserDO>> getDeptSupervisor(@RequestParam("id") Long deptId) {
|
|
|
UserPageReqVO reqVO =new UserPageReqVO();
|
|
|
reqVO.setDeptId(deptId);
|
|
|
reqVO.setUserType("3");
|
|
@@ -214,7 +214,6 @@ public class UserController {
|
|
|
return success(deptUser);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
//lsq学院和导师
|
|
|
@GetMapping("/graduateStudentPage")
|
|
|
@Operation(summary = "根据登录人获得毕业生分页列表")
|