|
@@ -384,7 +384,7 @@ public class ExamStudentServiceImpl extends ServiceImpl<ExamStudentDao, ExamStud
|
|
|
List<String> dbExamRoomList = dbStudentList
|
|
|
.stream()
|
|
|
.filter(e -> e.getExamRoom() != null && e.getExamRoom().length() > 0)
|
|
|
- .map(ExamStudentEntity::getExamSite)
|
|
|
+ .map(ExamStudentEntity::getExamRoom)
|
|
|
.distinct()
|
|
|
.collect(Collectors.toList());
|
|
|
if (studentList.stream().anyMatch(e -> dbExamRoomList.contains(e.getExamRoom()))) {
|