|
@@ -852,7 +852,7 @@ public class ExamRoomServiceImpl extends BaseServiceImpl<Long, ExamRoom> impleme
|
|
|
}
|
|
|
// imFeignService.dismissGroup(sysUser.getId().toString(),examRoomId.toString());
|
|
|
studentExamResultService.calculateStudentExamAvgScore(examRoomId);
|
|
|
- imFeignService.destroyRoom(examRoomId,sysUser.getId().toString(),examRoomId.toString());
|
|
|
+ imFeignService.destroyRoom(examRoomId,sysUser.getId().toString());
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -868,7 +868,7 @@ public class ExamRoomServiceImpl extends BaseServiceImpl<Long, ExamRoom> impleme
|
|
|
}
|
|
|
examRoom.setOpenFlag(0);
|
|
|
// imFeignService.dismissGroup(examRoom.getMainTeacherUserId().toString(),examRoomId.toString());
|
|
|
- imFeignService.destroyRoom(examRoomId,examRoom.getMainTeacherUserId().toString(),examRoomId.toString());
|
|
|
+ imFeignService.destroyRoom(examRoomId,examRoom.getMainTeacherUserId().toString());
|
|
|
examRoomDao.update(examRoom);
|
|
|
studentExamResultService.calculateStudentExamAvgScore(examRoomId);
|
|
|
return BaseController.succeed();
|
|
@@ -884,7 +884,7 @@ public class ExamRoomServiceImpl extends BaseServiceImpl<Long, ExamRoom> impleme
|
|
|
for (ExamRoom examRoom : examRooms) {
|
|
|
examRoom.setOpenFlag(0);
|
|
|
// imFeignService.dismissGroup(examRoom.getMainTeacherUserId().toString(),examRoom.getId().toString());
|
|
|
- imFeignService.destroyRoom(examRoom.getId(),examRoom.getMainTeacherUserId().toString(),examRoom.getId().toString());
|
|
|
+ imFeignService.destroyRoom(examRoom.getId(),examRoom.getMainTeacherUserId().toString());
|
|
|
studentExamResultService.calculateStudentExamAvgScore(examRoom.getId());
|
|
|
}
|
|
|
examRoomDao.batchUpdate(examRooms);
|