|
@@ -39,7 +39,7 @@ public class ExamRegistrationServiceImpl extends BaseServiceImpl<Long, ExamRegis
|
|
|
params.put("offset", pageInfo.getOffset());
|
|
|
dataList = this.getDAO().queryPage(params);
|
|
|
List<Integer> organIds = dataList.stream().map(ExamRegistration::getOrganId).collect(Collectors.toList());
|
|
|
- Map<Integer, String> organIdNameMap = this.getMap("agency", "id_", "name_", organIds, Integer.class, String.class);
|
|
|
+ Map<Integer, String> organIdNameMap = this.getMap("organization", "id_", "name_", organIds, Integer.class, String.class);
|
|
|
List<Integer> subjectIds = dataList.stream().map(ExamRegistration::getSubjectId).collect(Collectors.toList());
|
|
|
Map<Integer, String> subjectIdNameMap = this.getMap("subject", "id_", "name_", subjectIds, Integer.class, String.class);
|
|
|
for (ExamRegistration examRegistration : dataList) {
|