|
@@ -7,6 +7,7 @@ import org.springframework.web.client.RestTemplate;
|
|
|
import cn.com.qmth.examcloud.core.oe.student.api.OeStudentExamRecordCloudService;
|
|
|
import cn.com.qmth.examcloud.core.oe.student.api.request.DeleteExamAudioAnswerTempReq;
|
|
|
import cn.com.qmth.examcloud.core.oe.student.api.request.GetQrCodeReq;
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.response.GetQrCodeResp;
|
|
|
import cn.com.qmth.examcloud.web.redis.RedisClient;
|
|
|
|
|
|
@Service("oeStudentExamRecordCloudService")
|
|
@@ -23,8 +24,8 @@ public class OeStudentExamRecordCloudServiceClient extends AbstractCloudClientSu
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public String getQrCode(GetQrCodeReq req) {
|
|
|
- return post("examRecord/getQrCode",req,String.class);
|
|
|
+ public GetQrCodeResp getQrCode(GetQrCodeReq req) {
|
|
|
+ return post("examRecord/getQrCode",req,GetQrCodeResp.class);
|
|
|
}
|
|
|
|
|
|
}
|