Commit dc4b7a90 authored by shangying's avatar shangying

如果phone在detail表中已经存在,则idNo去user_detail表中的身份证号

parent 0285b473
......@@ -69,7 +69,7 @@ public class ApplyLoanServiceImpl implements ApplyLoanService {
if(Objects.nonNull(userDetail)){
idNo=userDetail.getId_no();
}
log.info("查看当前的phone是否已经在user_detail表中有,则使用现有的身份证号={}",userDetail);
log.info("查看当前的phone是否已经在user_detail表中有,则使用现有的身份证号={},idNo={}",userDetail,idNo);
String getDecryption = AESUtil.decryptAfterBase64Decode(result.get("context").toString(), aesKeywy);
log.info("解密的getDecryption的结果={}" , getDecryption);
JSONObject getDecryptionResult = (JSONObject) JSONObject.parse(getDecryption);
......
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