Ver Fonte

修改路径

chenken há 6 anos atrás
pai
commit
e2050845de

+ 1 - 1
examcloud-core-oe-admin-api-client/src/main/java/cn/com/qmth/examcloud/core/oe/admin/client/ExamRecordCloudServiceClient.java

@@ -36,7 +36,7 @@ public class ExamRecordCloudServiceClient extends AdminCloudClientSupport implem
 
 	@Override
 	public CheckExamIsStartedResp checkExamIsStarted(CheckExamIsStartedReq examRecordReq) {
-		return post("exam/examRecord/checkExamIsStarted", examRecordReq,CheckExamIsStartedResp.class);
+		return post("examRecord/checkExamIsStarted", examRecordReq,CheckExamIsStartedResp.class);
 	}
 
 }

+ 5 - 0
examcloud-core-oe-student-face-api-client/src/main/java/cn/com/qmth/examcloud/core/oe/student/face/client/ExamCaptureQueueCloudServiceClient.java

@@ -47,4 +47,9 @@ public class ExamCaptureQueueCloudServiceClient extends BasicCloudClientSupport
 		post("examCaptureQueue/changeExamCaptureQueueStatus", null, null);
 	}
 
+	@Override
+	public void examCaptureQueueMonitor() {
+		post("examCaptureQueue/examCaptureQueueMonitor", null, null);
+	}
+
 }

+ 5 - 0
examcloud-core-oe-student-face-api/src/main/java/cn/com/qmth/examcloud/core/oe/student/face/api/ExamCaptureQueueCloudService.java

@@ -23,4 +23,9 @@ public interface ExamCaptureQueueCloudService extends CloudService{
 	 * @return
 	 */
 	public void disposeExamCapturePhoto(ExamCaptureQueueReq examCaptureQueueReq);
+	
+	/**
+	 * 队列监测
+	 */
+	public void examCaptureQueueMonitor();
 }