|
@@ -534,7 +534,8 @@ public class ReportCommonServiceImpl implements ReportCommonService {
|
|
|
tbExamCourseQueryWrapper.lambda().eq(TBExamCourse::getPublishStatus, PublishStatusEnum.PUBLISH);
|
|
|
TBExamCourse tbExamCourse = tbExamCourseService.getOne(tbExamCourseQueryWrapper);
|
|
|
if (Objects.isNull(tbExamCourse)) {
|
|
|
- return null;
|
|
|
+ BigDecimal bigDecimal = new BigDecimal(0);
|
|
|
+ return new SurveyTeacherExamCourseResult(bigDecimal, bigDecimal, bigDecimal, bigDecimal);
|
|
|
}
|
|
|
}
|
|
|
TAExamCourse taExamCourse = taExamCourseService.getOne(taExamCourseQueryWrapper);
|