|  | @@ -1220,7 +1220,7 @@ public class CourseScheduleServiceImpl extends BaseServiceImpl<Long, CourseSched
 | 
	
		
			
				|  |  |  //                String[] studentNames = classGroupStudentMapperDao.findCourseStudentName(courseScheduleDto.getId().intValue());
 | 
	
		
			
				|  |  |                  List<StudentNameAndPhoneDto> courseStudentNameAndPhone = classGroupStudentMapperDao.findCourseStudentNameAndPhone(courseScheduleDto.getId().intValue());
 | 
	
		
			
				|  |  |                  if(!CollectionUtils.isEmpty(courseStudentNameAndPhone)){
 | 
	
		
			
				|  |  | -                    List<String> studentNames = courseStudentNameAndPhone.stream().filter(s->Objects.nonNull(s.getUserName())).map(StudentNameAndPhoneDto::getUserName).collect(Collectors.toList());
 | 
	
		
			
				|  |  | +                    List<String> studentNames = courseStudentNameAndPhone.stream().filter(s->Objects.nonNull(s.getUserName())&&Objects.nonNull(s)).map(StudentNameAndPhoneDto::getUserName).collect(Collectors.toList());
 | 
	
		
			
				|  |  |                      courseScheduleDto.setStudentNames(org.apache.commons.lang3.StringUtils.join(studentNames, ","));
 | 
	
		
			
				|  |  |                      courseScheduleDto.setStudents(courseStudentNameAndPhone);
 | 
	
		
			
				|  |  |                  }
 |