|
@@ -308,6 +308,9 @@ public class StudentServeServiceImpl implements StudentServeService {
|
|
|
// }
|
|
|
|
|
|
List<StudentServeCourseDto> studentFutureCourseInfo = studentDao.getStudentFutureCourseInfo(monDayDate.toString(), studentIds);
|
|
|
+ if(CollectionUtils.isEmpty(studentFutureCourseInfo)){
|
|
|
+ return;
|
|
|
+ }
|
|
|
Map<Integer, List<StudentServeCourseDto>> studentCourseMap = studentFutureCourseInfo.stream().collect(Collectors.groupingBy(StudentServeCourseDto::getStudentId));
|
|
|
|
|
|
List<StudentExtracurricularExercisesSituation> results=new ArrayList<>();
|