|
@@ -100,6 +100,9 @@ public class StudentExamResultServiceImpl extends BaseServiceImpl<Long, StudentE
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public StudentExamResultStatisticsDto getStudentExamResultStatisticsInfo(Integer organId, Integer examId) {
|
|
public StudentExamResultStatisticsDto getStudentExamResultStatisticsInfo(Integer organId, Integer examId) {
|
|
|
|
+ if(Objects.isNull(examId)){
|
|
|
|
+ throw new BizException("请指定考级项目");
|
|
|
|
+ }
|
|
List<Integer> childOrganIds = organizationService.getChildOrganIds(organId, true);
|
|
List<Integer> childOrganIds = organizationService.getChildOrganIds(organId, true);
|
|
StudentExamResultStatisticsDto studentExamResultStatisticsInfo = studentExamResultDao.getStudentExamResultStatisticsInfo(childOrganIds, examId);
|
|
StudentExamResultStatisticsDto studentExamResultStatisticsInfo = studentExamResultDao.getStudentExamResultStatisticsInfo(childOrganIds, examId);
|
|
return studentExamResultStatisticsInfo;
|
|
return studentExamResultStatisticsInfo;
|