Commit 305b4b7e authored by shangying's avatar shangying

申请判断有问题

parent 259d3d71
......@@ -81,12 +81,10 @@ public class ApplyLoanServiceImpl implements ApplyLoanService {
JSONObject bizData= (JSONObject) JSONObject.parse(getDecryptionResult.get("bizData").toString());
log.info("bizData={}",bizData);
String code=bizData.get("code").toString();
String codeCompare=bizData.get("code").toString();
String businessCode=bizData.get("businessCode").toString();
String businessCodeCompare=bizData.get("businessCode").toString();
String msg=bizData.get("msg").toString();
log.info("msg={}",msg);
if(code.equals(codeCompare) && businessCode.equals(businessCodeCompare)){
if(code.equals(ResposeResultEnum.CODE.getDesc()) && businessCode.equals(ResposeResultEnum.BUSINESSCODE.getDesc())){
//申请的数据插入数据库 one_click_data
OneClickData oneClickData=new OneClickData();
oneClickData.setPhone(oneClickModel.getPhone());
......
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