Commit 40960339 authored by BlackJokerCJ's avatar BlackJokerCJ

xiyi

parent e94c68e3
...@@ -39,17 +39,17 @@ ...@@ -39,17 +39,17 @@
<dependency> <dependency>
<groupId>com.jqtx.infrastructure</groupId> <groupId>com.jqtx.infrastructure</groupId>
<artifactId>infrastructure-oss-starter</artifactId> <artifactId>infrastructure-oss-starter</artifactId>
<version>0.0.4-SNAPSHOT</version> <version>0.0.5-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.jqtx.infrastructure</groupId> <groupId>com.jqtx.infrastructure</groupId>
<artifactId>infrastructure-xxl-starter</artifactId> <artifactId>infrastructure-xxl-starter</artifactId>
<version>0.0.4-SNAPSHOT</version> <version>0.0.5-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.jqtx.infrastructure</groupId> <groupId>com.jqtx.infrastructure</groupId>
<artifactId>infrastructure-core</artifactId> <artifactId>infrastructure-core</artifactId>
<version>0.0.4-SNAPSHOT</version> <version>0.0.5-SNAPSHOT</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.springframework.cloud</groupId> <groupId>org.springframework.cloud</groupId>
...@@ -61,19 +61,19 @@ ...@@ -61,19 +61,19 @@
<dependency> <dependency>
<groupId>com.jqtx.infrastructure</groupId> <groupId>com.jqtx.infrastructure</groupId>
<artifactId>infrastructure-mybatis-starter</artifactId> <artifactId>infrastructure-mybatis-starter</artifactId>
<version>0.0.4-SNAPSHOT</version> <version>0.0.5-SNAPSHOT</version>
</dependency> </dependency>
<!-- 支持mq 基础包 --> <!-- 支持mq 基础包 -->
<dependency> <dependency>
<groupId>com.jqtx.infrastructure</groupId> <groupId>com.jqtx.infrastructure</groupId>
<artifactId>infrastructure-mq-starter</artifactId> <artifactId>infrastructure-mq-starter</artifactId>
<version>0.0.4-SNAPSHOT</version> <version>0.0.5-SNAPSHOT</version>
</dependency> </dependency>
<!-- 支持oss 基础包 --> <!-- 支持oss 基础包 -->
<dependency> <dependency>
<groupId>com.jqtx.infrastructure</groupId> <groupId>com.jqtx.infrastructure</groupId>
<artifactId>infrastructure-oss-starter</artifactId> <artifactId>infrastructure-oss-starter</artifactId>
<version>0.0.4-SNAPSHOT</version> <version>0.0.5-SNAPSHOT</version>
</dependency> </dependency>
<!--swagger--> <!--swagger-->
<dependency> <dependency>
......
...@@ -13,6 +13,7 @@ import com.jqtx.infrastructure.mq.starter.annotation.MQConsumerComponent; ...@@ -13,6 +13,7 @@ import com.jqtx.infrastructure.mq.starter.annotation.MQConsumerComponent;
import com.jqtx.infrastructure.oss.starter.config.OssUtils; import com.jqtx.infrastructure.oss.starter.config.OssUtils;
import com.jqtx.infrastructure.oss.starter.properties.OssProperties; import com.jqtx.infrastructure.oss.starter.properties.OssProperties;
import com.jqtx.infrastructure.util.LoanMobileAESUtil; import com.jqtx.infrastructure.util.LoanMobileAESUtil;
import com.jqtx.infrastructure.util.SecurityUtils;
import com.jqtx.windows.common.config.BaseConfig; import com.jqtx.windows.common.config.BaseConfig;
import com.jqtx.windows.common.exception.BizException; import com.jqtx.windows.common.exception.BizException;
import com.jqtx.windows.component.CreditComponent; import com.jqtx.windows.component.CreditComponent;
...@@ -81,10 +82,9 @@ public class CreditListener extends AbstractMQConsumerHandler<CreditSubmitReques ...@@ -81,10 +82,9 @@ public class CreditListener extends AbstractMQConsumerHandler<CreditSubmitReques
private ClientInfoModel convertCredit(CreditSubmitRequest request, CreditModel model) { private ClientInfoModel convertCredit(CreditSubmitRequest request, CreditModel model) {
ClientInfoModel clientInfoModel = new ClientInfoModel(); ClientInfoModel clientInfoModel = new ClientInfoModel();
CreditInformationModel infoModel = request.getCreditData(); CreditInformationModel infoModel = request.getCreditData();
clientInfoModel.setCertNo(infoModel.getBasicInfo().getIdCard()); clientInfoModel.setCertNo(SecurityUtils.cryptAES(infoModel.getBasicInfo().getIdCard()));
clientInfoModel.setClientName(infoModel.getBasicInfo().getName()); clientInfoModel.setClientName(SecurityUtils.cryptAES(infoModel.getBasicInfo().getName()));
clientInfoModel.setClientNo(model.getClientNo()); clientInfoModel.setClientNo(model.getClientNo());
clientInfoModel.setClientCell(infoModel.getBasicInfo().getPhone());
clientInfoModel.setOrderNo(request.getOrderNo()); clientInfoModel.setOrderNo(request.getOrderNo());
clientInfoModel.setMobileEncrypt(LoanMobileAESUtil.encrypt(model.getClientCell())); clientInfoModel.setMobileEncrypt(LoanMobileAESUtil.encrypt(model.getClientCell()));
clientInfoModel.setProductName("ZN_DAI"); clientInfoModel.setProductName("ZN_DAI");
...@@ -187,9 +187,9 @@ public class CreditListener extends AbstractMQConsumerHandler<CreditSubmitReques ...@@ -187,9 +187,9 @@ public class CreditListener extends AbstractMQConsumerHandler<CreditSubmitReques
model.setClientNo(clientId); model.setClientNo(clientId);
model.setOrderNo(request.getOrderNo()); model.setOrderNo(request.getOrderNo());
ossUtils.upStringObject(model.getCreditDetailUrl(), JSON.toJSONString(infoModel)); ossUtils.upStringObject(model.getCreditDetailUrl(), JSON.toJSONString(infoModel));
model.setClientCell(basicModel.getPhone()); model.setClientCell(LoanMobileAESUtil.encrypt(basicModel.getPhone()));
model.setCertNo(basicModel.getIdCard()); model.setCertNo(SecurityUtils.cryptAES(basicModel.getIdCard()));
model.setClientName(basicModel.getName()); model.setClientName(SecurityUtils.cryptAES(basicModel.getName()));
return model; return model;
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment