Commit b22b4240 authored by shangying's avatar shangying

进件bug修复

parent 6d84ffb7
...@@ -75,7 +75,7 @@ public class ApplyLoanServiceImpl implements ApplyLoanService { ...@@ -75,7 +75,7 @@ public class ApplyLoanServiceImpl implements ApplyLoanService {
// result= defautApply(); // result= defautApply();
// } // }
String getDecryption = AESUtil.decryptAfterBase64Decode(result.get("context").toString(), aesKeywy); String getDecryption = AESUtil.decryptAfterBase64Decode(result.get("context").toString(), aesKeywy);
log.info("解密的getDecryption的结果={}" + getDecryption); log.info("解密的getDecryption的结果={}" , getDecryption);
JSONObject getDecryptionResult = (JSONObject) JSONObject.parse(getDecryption); JSONObject getDecryptionResult = (JSONObject) JSONObject.parse(getDecryption);
log.info("打印一下getDecryptionResult={}",getDecryptionResult.get("bizData")); log.info("打印一下getDecryptionResult={}",getDecryptionResult.get("bizData"));
JSONObject bizData= (JSONObject) JSONObject.parse(getDecryptionResult.get("bizData").toString()); JSONObject bizData= (JSONObject) JSONObject.parse(getDecryptionResult.get("bizData").toString());
...@@ -567,7 +567,7 @@ public class ApplyLoanServiceImpl implements ApplyLoanService { ...@@ -567,7 +567,7 @@ public class ApplyLoanServiceImpl implements ApplyLoanService {
ArrayList listPara1 = new ArrayList(); ArrayList listPara1 = new ArrayList();
listPara1.add(0,para7); listPara1.add(0,para7);
paras.put("creditList",listPara1); paras.put("creditList",listPara1);
return null; return paras;
} }
@Override @Override
...@@ -644,7 +644,7 @@ public class ApplyLoanServiceImpl implements ApplyLoanService { ...@@ -644,7 +644,7 @@ public class ApplyLoanServiceImpl implements ApplyLoanService {
ArrayList listPara1 = new ArrayList(); ArrayList listPara1 = new ArrayList();
listPara1.add(0,para7); listPara1.add(0,para7);
paras.put("creditList",listPara1); paras.put("creditList",listPara1);
return null; return paras;
} }
@Override @Override
......
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