|
@@ -109,8 +109,8 @@ public class CreatePdfUtil {
|
|
|
Set<String> courseCodes = new HashSet<>(), courseNames = new HashSet<>();
|
|
|
for (ExamStudentCourseDto examStudentCourseDto : examStudentList) {
|
|
|
examDetailCourseIds.add(examStudentCourseDto.getExamDetailCourseId());
|
|
|
- courseCodes.add(examStudentCourseDto.getCourseCode());
|
|
|
- courseNames.add(examStudentCourseDto.getPaperNumber());
|
|
|
+ courseCodes.add(examStudentCourseDto.getPaperNumber());
|
|
|
+ courseNames.add(examStudentCourseDto.getCourseName());
|
|
|
}
|
|
|
htmlMap.put("examDetailCourseId", StringUtils.join(examDetailCourseIds, ", "));
|
|
|
htmlMap.put("courseName", String.join(", ", courseNames));
|
|
@@ -218,8 +218,8 @@ public class CreatePdfUtil {
|
|
|
Set<String> courseCodes = new HashSet<>(), courseNames = new HashSet<>();
|
|
|
for (ExamStudentCourseDto examStudentCourseDto : examStudentList) {
|
|
|
examDetailCourseIds.add(examStudentCourseDto.getExamDetailCourseId());
|
|
|
- courseCodes.add(examStudentCourseDto.getCourseCode());
|
|
|
- courseNames.add(examStudentCourseDto.getPaperNumber());
|
|
|
+ courseCodes.add(examStudentCourseDto.getPaperNumber());
|
|
|
+ courseNames.add(examStudentCourseDto.getCourseName());
|
|
|
}
|
|
|
htmlMap.put("examDetailCourseId", StringUtils.join(examDetailCourseIds, ", "));
|
|
|
htmlMap.put("courseName", String.join(", ", courseNames));
|