|
@@ -440,7 +440,7 @@ public class ExamRoomStudentRelationServiceImpl extends BaseServiceImpl<Long, Ex
|
|
|
HashMap<Integer, String> map = new HashMap<>();
|
|
|
map.put(studentListDto.getStudentId(),studentListDto.getStudentId().toString());
|
|
|
String url = "3?examRegistrationId=" + studentListDto.getExamRegistrationId();
|
|
|
- sysMessageService.batchSendMessage(MessageTypeEnum.EXAM_WILL_START_PUSH,map,null,null,url, JiguangPushPlugin.PLUGIN_NAME,actionExamPush);
|
|
|
+ sysMessageService.batchSendMessage(MessageTypeEnum.EXAM_WILL_START_PUSH,map,null,0,url, JiguangPushPlugin.PLUGIN_NAME,actionExamPush);
|
|
|
}
|
|
|
}
|
|
|
//将当前学员退踢出教室
|
|
@@ -594,7 +594,7 @@ public class ExamRoomStudentRelationServiceImpl extends BaseServiceImpl<Long, Ex
|
|
|
HashMap<Integer, String> map = new HashMap<>();
|
|
|
map.put(studentListDto.getStudentId(),studentListDto.getStudentId().toString());
|
|
|
String url = "3?examRegistrationId=" + studentListDto.getExamRegistrationId();
|
|
|
- sysMessageService.batchSendMessage(MessageTypeEnum.EXAM_WILL_START_PUSH,map,null,null,url, JiguangPushPlugin.PLUGIN_NAME,actionExamPush);
|
|
|
+ sysMessageService.batchSendMessage(MessageTypeEnum.EXAM_WILL_START_PUSH,map,null,0,url, JiguangPushPlugin.PLUGIN_NAME,actionExamPush);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -613,7 +613,7 @@ public class ExamRoomStudentRelationServiceImpl extends BaseServiceImpl<Long, Ex
|
|
|
HashMap<Integer, String> map = new HashMap<>(1);
|
|
|
map.put(examRoomStudentRelation.getStudentId(),examRoomStudentRelation.getStudentId().toString());
|
|
|
ExaminationBasic examinationBasic = examinationBasicDao.get(examRoomStudentRelation.getExaminationBasicId());
|
|
|
- sysMessageService.batchSendMessage(MessageTypeEnum.EXAM_ROOM_STUDENT_SIGN_IN_AGAIN_PUSH,map,null,null,null,JiguangPushPlugin.PLUGIN_NAME,examinationBasic.getName());
|
|
|
+ sysMessageService.batchSendMessage(MessageTypeEnum.EXAM_ROOM_STUDENT_SIGN_IN_AGAIN_PUSH,map,null,0,null,JiguangPushPlugin.PLUGIN_NAME,examinationBasic.getName());
|
|
|
}else {
|
|
|
imFeignService.kickRoom(new ReqUserData(examRoomStudentRelation.getExamRegistrationId(),examRoomStudentRelation.getStudentId().toString()));
|
|
|
//结束考试
|
|
@@ -633,7 +633,7 @@ public class ExamRoomStudentRelationServiceImpl extends BaseServiceImpl<Long, Ex
|
|
|
HashMap<Integer, String> map = new HashMap<>(1);
|
|
|
map.put(examRoomStudentRelation.getStudentId(),examRoomStudentRelation.getStudentId().toString());
|
|
|
String url = "3?examRegistrationId=" + examRoomStudentRelation.getExamRegistrationId();
|
|
|
- sysMessageService.batchSendMessage(MessageTypeEnum.EXAM_STARTED_PUSH,map,null,null,url,JiguangPushPlugin.PLUGIN_NAME);
|
|
|
+ sysMessageService.batchSendMessage(MessageTypeEnum.EXAM_STARTED_PUSH,map,null,0,url,JiguangPushPlugin.PLUGIN_NAME);
|
|
|
|
|
|
//状态变更为呼叫中
|
|
|
studentExamResultDao.updateFinishedExam(examRoomStudentRelation.getExamRegistrationId(),1);
|