|
@@ -481,7 +481,7 @@ public class UserController {
|
|
|
}
|
|
|
|
|
|
@GetMapping("/getGraduateCount")
|
|
|
- @Operation(summary = "获取已经人数统计")
|
|
|
+ @Operation(summary = "获取毕业生人数统计")
|
|
|
public CommonResult<Map<String,Integer>> getGraduateCount() throws Exception {
|
|
|
UserPageReqVO reqVO= new UserPageReqVO();
|
|
|
List<AdminUserDO> studnetList = userService.getUserList(reqVO.setUserType("1"));
|
|
@@ -492,7 +492,7 @@ public class UserController {
|
|
|
|
|
|
Map<String, Integer> result = new HashMap<>();
|
|
|
result.put("studentNum", studentNum);
|
|
|
- result.put("graduate", graduateNum);
|
|
|
+ result.put("graduateNum", graduateNum);
|
|
|
|
|
|
return success(result);
|
|
|
|