|
@@ -472,7 +472,7 @@ public class StudentServiceImpl extends BaseServiceImpl<Integer, Student> implem
|
|
|
if(studentGroupNamesMap.containsKey(eduOrganStudentListDto.getStudentId())){
|
|
|
eduOrganStudentListDto.setMusicGroupNames(studentGroupNamesMap.get(eduOrganStudentListDto.getStudentId()));
|
|
|
}
|
|
|
- if(hasVipCourseStudentIds.contains(eduOrganStudentListDto.getSubjectId())){
|
|
|
+ if(hasVipCourseStudentIds.contains(eduOrganStudentListDto.getStudentId())){
|
|
|
eduOrganStudentListDto.setHasVipGroup(1);
|
|
|
}
|
|
|
if(eduOrganStudentListDto.getCloudStudyUseNum()>0 && eduOrganStudentListDto.getCloudStudyUseTime()>0){
|
|
@@ -717,7 +717,7 @@ public class StudentServiceImpl extends BaseServiceImpl<Integer, Student> implem
|
|
|
comparing = Comparator.comparing(EduOrganStudentDataDto::getOrganId);
|
|
|
}
|
|
|
|
|
|
- result = result.stream().skip(pageInfo.getOffset()).limit(pageInfo.getLimit()).sorted(comparing).collect(Collectors.toList());
|
|
|
+ result = result.stream().sorted(comparing).skip(pageInfo.getOffset()).limit(pageInfo.getLimit()).collect(Collectors.toList());
|
|
|
pageInfo.setRows(result);
|
|
|
return pageInfo;
|
|
|
}
|