|
@@ -461,7 +461,7 @@ public class StudentAttendanceController {
|
|
|
Set<String> normalSet = new HashSet<>();
|
|
|
List<StudentAttendanceDO> normalList= studentAttendanceService.getStudentAttendanceAllList(attendanceReqVO);
|
|
|
for (StudentAttendanceDO attendance : normalList) {
|
|
|
- normalSet.add(attendance.getUserNumber()); // 使用学生学号进行去重
|
|
|
+ normalSet.add(attendance.getUserNumber()); // 使用学生学号进行去重
|
|
|
}
|
|
|
|
|
|
Set<String> errorSet = new HashSet<>();
|