Commit 15057f94 authored by BlackJokerCJ's avatar BlackJokerCJ

xiyi

parent cf5e586d
......@@ -38,6 +38,8 @@ public class LoanSubmitCommand extends AbstractCommand {
private CreditComponent creditComponent;
@Autowired
private IWakandaFeignService wakandaFeignService;
@Autowired
private WindowsProducer windowsProducer;
@Override
......@@ -62,6 +64,9 @@ public class LoanSubmitCommand extends AbstractCommand {
loanModel.setGmtCreated(LocalDateTime.now());
loanModel.setGmtModified(LocalDateTime.now());
Boolean insert = loanComponent.insert(loanModel);
JSONObject thirdDataReq = new JSONObject();
thirdDataReq.put("orderNo", loanSubmitResponse.getOrderNo());
windowsProducer.pullCreditThirdData(thirdDataReq);
if (!insert) {
throw new BizException(ExceptionCodeEnum.SYSTEM_SQL_INSERT_ERROR);
}
......
......@@ -41,7 +41,6 @@ public class CreditThirdDataJob {
ZyJsonResult zyJsonResult = abcHttpClient.postRequest(thirdCredit.toJSONString(), ZNPostUrlEnum.CREDIT_QUERY.getCode());
JSONArray jsonArray = zyJsonResult.getExternalInfo();
JSONObject thirdData = new JSONObject();
log.info("jsonArray:[{}]",jsonArray);
for (int i = 0; i < jsonArray.size(); i++) {
JSONObject jsonObject = (JSONObject) jsonArray.get(i);
log.info("dataSource:[{}],data:[{}]",jsonObject.getString("dataSource"),jsonObject.getJSONObject("data"));
......
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