|
@@ -159,12 +159,14 @@ public class EasArcTlsAttendanceServiceImpl implements EasArcTlsAttendanceServic
|
|
|
.collect(Collectors.toList());
|
|
|
}
|
|
|
|
|
|
+
|
|
|
// @Override
|
|
|
// public List<EasArcTlsAttendance> getStudentList(Long scheduleId) {
|
|
|
// // 创建查询条件,根据课表ID查找EasEduSchedule表,获取班级ID
|
|
|
// EasEduSchedule easEduSchedule = easEduScheduleMapper.selectByPrimaryKey(scheduleId);
|
|
|
// if (Objects.nonNull(easEduSchedule)) {
|
|
|
// Long classId = Long.valueOf(easEduSchedule.getClassId()); // 将班级ID赋值给classId变量
|
|
|
+// System.out.println("!!!!查出来的对应scheduleId的classId = " + classId);
|
|
|
//
|
|
|
// // 创建查询条件,根据班级ID查找EasEduCltRelation表,获取学生ID
|
|
|
// EasEduCltRelationExample easEduCltRelationExample = new EasEduCltRelationExample();
|
|
@@ -198,10 +200,11 @@ public class EasArcTlsAttendanceServiceImpl implements EasArcTlsAttendanceServic
|
|
|
// });
|
|
|
// return list;
|
|
|
// } else {
|
|
|
-// throw new EasException("未查询到对应课表,请检查数据库",9595); // 如果查询不到课表,则返回空列表
|
|
|
+// throw new EasException("未查询到对应课表,请检查数据库", 9595); // 如果查询不到课表,则返回空列表
|
|
|
// }
|
|
|
// }
|
|
|
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|