教学bug

This commit is contained in:
DU 2021-01-11 20:02:12 +08:00
parent d72beb1e93
commit ec6cb89ce0

View File

@ -232,7 +232,7 @@ public class DepartUserStaticServiceImpl implements IDepartUserStatisticService
public List<ExportStudentInfo> studentInfoStatistics(StudentInfoExportParam infoExportParam) {
//根据班级id查询对应学生信息
DepartmentUserExample departmentUserExample = new DepartmentUserExample();
departmentUserExample.createCriteria().andDepartmentIdEqualTo(infoExportParam.getClassId());
departmentUserExample.createCriteria().andDepartmentIdEqualTo(infoExportParam.getClassId()).andManagerEqualTo(false);
List<DepartmentUser> departmentUsers = this.departmentUserDAO.selectByExample(departmentUserExample);
//课程关联实训数
Map<String, Long> prd2TrainNums = infoExportParam.getPrdParams().stream().collect(Collectors.toMap(prdParam -> prdParam.getPrdType(), prdParam -> {