Bladeren bron

去掉处理返回值

chenken 6 jaren geleden
bovenliggende
commit
4ec442d3da

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

@@ -34,12 +34,12 @@ public class ExamCaptureQueueCloudServiceClient extends BasicCloudClientSupport
 
 	@Override
 	public void processingExamCaptureQueue() {
-		 post("examCaptureQueue/processingExamCaptureQueue", null, null);
+		post("examCaptureQueue/processingExamCaptureQueue", null, null);
 	}
 
 	@Override
-	public String disposeExamCapturePhoto(ExamCaptureQueueReq examCaptureQueueReq) {
-		return post("examCaptureQueue/disposeExamCapturePhoto", examCaptureQueueReq, String.class);
+	public void disposeExamCapturePhoto(ExamCaptureQueueReq examCaptureQueueReq) {
+		post("examCaptureQueue/disposeExamCapturePhoto", examCaptureQueueReq,null);
 	}
 
 	@Override

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

@@ -22,5 +22,5 @@ public interface ExamCaptureQueueCloudService extends CloudService{
 	 * @param examCaptureQueueReq
 	 * @return
 	 */
-	public String disposeExamCapturePhoto(ExamCaptureQueueReq examCaptureQueueReq);
+	public void disposeExamCapturePhoto(ExamCaptureQueueReq examCaptureQueueReq);
 }