|
@@ -53,7 +53,7 @@ public class SysReportController {
|
|
if (Objects.nonNull(tbExamList) && tbExamList.size() > 0) {
|
|
if (Objects.nonNull(tbExamList) && tbExamList.size() > 0) {
|
|
tbExamResultList = new ArrayList<>();
|
|
tbExamResultList = new ArrayList<>();
|
|
for (TBExam tbExam : tbExamList) {
|
|
for (TBExam tbExam : tbExamList) {
|
|
- tbExamResultList.add(new TBExamResult(tbExam.getId(), basicSemesterService.getById(tbExam.getSemesterId()).getName()));
|
|
|
|
|
|
+ tbExamResultList.add(new TBExamResult(tbExam.getSemesterId(), basicSemesterService.getById(tbExam.getSemesterId()).getName()));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return ResultUtil.ok(tbExamResultList);
|
|
return ResultUtil.ok(tbExamResultList);
|