|
@@ -1140,6 +1140,10 @@ public class ClassGroupServiceImpl extends BaseServiceImpl<Integer, ClassGroup>
|
|
|
String[] studentNums = classGroupStudentMapperDao.findStudentNumByClassGroupId(classGroupId);
|
|
|
teacherClassHeadInfo.setStudentNames(StringUtils.join(studentNums, ","));
|
|
|
}
|
|
|
+ if (classGroup.getType() == ClassGroupTypeEnum.COMM) {
|
|
|
+ String[] studentNums = classGroupStudentMapperDao.findStudentNumByClassGroupId(classGroupId);
|
|
|
+ teacherClassHeadInfo.setStudentNames(StringUtils.join(studentNums, ","));
|
|
|
+ }
|
|
|
return teacherClassHeadInfo;
|
|
|
}
|
|
|
|