|
@@ -14,7 +14,12 @@ import org.springframework.web.client.RestTemplate;
|
|
|
* @description ExamCaptureCloudServiceClient
|
|
|
*/
|
|
|
public class ExamCaptureCloudServiceClient extends BasicCloudClientSupport implements ExamCaptureCloudService {
|
|
|
- @Autowired
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private static final long serialVersionUID = 1262703968678075364L;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
private RestTemplate restTemplate;
|
|
|
|
|
|
@Autowired
|
|
@@ -32,8 +37,7 @@ public class ExamCaptureCloudServiceClient extends BasicCloudClientSupport imple
|
|
|
|
|
|
@Override
|
|
|
public void disposeExamCaptureQueue(ExamCaptureReq examCaptureReq) {
|
|
|
- // TODO Auto-generated method stub
|
|
|
- post("/disposeExamCaptureQueue", examCaptureReq, null);
|
|
|
+ post("/examCapture", examCaptureReq, null);
|
|
|
}
|
|
|
|
|
|
|