|
@@ -0,0 +1,76 @@
|
|
|
|
|
+package com.jzg.quote.guoren.api.service.Impl;
|
|
|
|
|
+
|
|
|
|
|
+import com.fasterxml.jackson.core.JsonProcessingException;
|
|
|
|
|
+import com.jzg.quotation.commons.entity.vo.aggregated.InsuranceUploadImageVo;
|
|
|
|
|
+import com.jzg.quotation.commons.entity.vo.aggregated.QuoteResultsVo;
|
|
|
|
|
+import com.jzg.quotation.commons.entity.vo.aggregated.QuoteVo;
|
|
|
|
|
+import com.jzg.quotation.commons.entity.vo.aggregated.UnderwritingVo;
|
|
|
|
|
+import com.jzg.quotation.commons.entity.vo.base.OrderBase;
|
|
|
|
|
+import com.jzg.quote.guoren.api.service.GuoRenApiRequest;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * @description: todo
|
|
|
|
|
+ * @author: shenwd
|
|
|
|
|
+ * @date: 2025/3/14 09:58
|
|
|
|
|
+ **/
|
|
|
|
|
+public class GuoRenApiRequestImpl implements GuoRenApiRequest {
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 报价
|
|
|
|
|
+ * @param quoteVo 报价实体
|
|
|
|
|
+ * @return 报价信息
|
|
|
|
|
+ */
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public QuoteResultsVo quote(QuoteVo quoteVo) throws JsonProcessingException {
|
|
|
|
|
+ return null;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 提交核保 子订单
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param underwritingVo
|
|
|
|
|
+ */
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public void underwriting(UnderwritingVo underwritingVo) {
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 获取支付链接
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param orderBase
|
|
|
|
|
+ */
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public String getPaymentLink(OrderBase orderBase) throws JsonProcessingException {
|
|
|
|
|
+ return "";
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 上传影像
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param insuranceUploadImageVo
|
|
|
|
|
+ */
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public void uploadImage(InsuranceUploadImageVo insuranceUploadImageVo) {
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 下载保单
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param orderBase
|
|
|
|
|
+ */
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public void downloadPolicy(OrderBase orderBase) {
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 查询订单状态
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param orderBase
|
|
|
|
|
+ */
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public void queryOrderState(OrderBase orderBase) {
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
|
|
+}
|