|
@@ -3266,9 +3266,8 @@ public class ClassGroupServiceImpl extends BaseServiceImpl<Integer, ClassGroup>
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public Map<String, Object> studentClassAuditDetail(String musicGroupId) {
|
|
|
+ public List<Map<String,Object>> studentClassAuditDetail(String musicGroupId) {
|
|
|
List<Map<String,Object>> result = new ArrayList<>();
|
|
|
-
|
|
|
//获取班级列表
|
|
|
List<ClassGroup> classGroups = classGroupDao.queryClassGroups(musicGroupId, null);
|
|
|
for (ClassGroup classGroup : classGroups) {
|
|
@@ -3281,6 +3280,6 @@ public class ClassGroupServiceImpl extends BaseServiceImpl<Integer, ClassGroup>
|
|
|
resultMap.put("students",classGroupStudentMapperDao.findCourseStudentNameAndPhoneByClassGroupId(classGroup.getId()));
|
|
|
result.add(resultMap);
|
|
|
}
|
|
|
- return null;
|
|
|
+ return result;
|
|
|
}
|
|
|
}
|