|
@@ -4923,7 +4923,7 @@ public class CourseScheduleServiceImpl extends BaseServiceImpl<Long, CourseSched
|
|
|
}
|
|
|
pageInfo.setTotal(count);
|
|
|
params.put("offset", pageInfo.getOffset());
|
|
|
- results = courseScheduleDao.endFindCourseSchedules(params);
|
|
|
+ List<CourseScheduleEndDto> results = courseScheduleDao.endFindCourseSchedules(params);
|
|
|
if (!CollectionUtils.isEmpty(results)) {
|
|
|
List<Long> courseScheduleIds = results.stream().map(CourseScheduleEndDto::getId).collect(Collectors.toList());
|
|
|
List<Integer> teacherIds=results.stream().filter(t->Objects.nonNull(t.getActualTeacherId())).map(CourseSchedule::getActualTeacherId).collect(Collectors.toList());
|