|
@@ -85,13 +85,13 @@ public class DeptAssessmentDeclarationServiceImpl extends ServiceImpl<DeptAssess
|
|
|
}
|
|
|
List<EvaluationDept> evaluationDeptList = evaluationDeptService.list(secondaryDeptQw);
|
|
|
for (EvaluationDept obj : evaluationDeptList) {
|
|
|
- JSONObject jsonArr = userService.pageList(1, 1000, obj.getDeptId(), "", "", "", "", "", request);
|
|
|
+ JSONObject jsonArr = userService.pageList(1, 500, obj.getDeptId(), "", "", "", "", "", request);
|
|
|
JSONObject jsonArr1 = (JSONObject) jsonArr.get("data");
|
|
|
JSONArray array = JSONUtil.parseArray(jsonArr1.get("records"));
|
|
|
List<UserDTO> userList = JSONUtil.toList(array, UserDTO.class);
|
|
|
secondaryList.addAll(userList);
|
|
|
}
|
|
|
- JSONObject jsonArr = userService.pageList(1, 1000, deptAssessmentDeclaration.getDeptId(), "", "", "", "", "", request);
|
|
|
+ JSONObject jsonArr = userService.pageList(1, 500, deptAssessmentDeclaration.getDeptId(), "", "", "", "", "", request);
|
|
|
JSONObject jsonArr1 = (JSONObject) jsonArr.get("data");
|
|
|
JSONArray array = JSONUtil.parseArray(jsonArr1.get("records"));
|
|
|
List<UserDTO> userList = JSONUtil.toList(array, UserDTO.class);
|
|
@@ -109,7 +109,7 @@ public class DeptAssessmentDeclarationServiceImpl extends ServiceImpl<DeptAssess
|
|
|
}
|
|
|
}
|
|
|
} else {//子级部门
|
|
|
- JSONObject jsonArr = userService.pageList(1, 1000, deptAssessmentDeclaration.getDeptId(), "", "", "", "", "", request);
|
|
|
+ JSONObject jsonArr = userService.pageList(1, 500, deptAssessmentDeclaration.getDeptId(), "", "", "", "", "", request);
|
|
|
JSONObject jsonArr1 = (JSONObject) jsonArr.get("data");
|
|
|
JSONArray array = JSONUtil.parseArray(jsonArr1.get("records"));
|
|
|
List<UserDTO> userList = JSONUtil.toList(array, UserDTO.class);
|