@@ -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);
}
@@ -47,4 +47,9 @@ public class ExamCaptureQueueCloudServiceClient extends BasicCloudClientSupport
post("examCaptureQueue/changeExamCaptureQueueStatus", null, null);
+ @Override
+ public void examCaptureQueueMonitor() {
+ post("examCaptureQueue/examCaptureQueueMonitor", null, null);
+ }
+
@@ -23,4 +23,9 @@ public interface ExamCaptureQueueCloudService extends CloudService{
* @return
*/
public void disposeExamCapturePhoto(ExamCaptureQueueReq examCaptureQueueReq);
+ /**
+ * 队列监测
+ */
+ public void examCaptureQueueMonitor();