|
@@ -190,7 +190,9 @@ public class ProcessInfoServiceImpl /*extends ServiceImpl<ProcessInfoMapper, Pro
|
|
|
checkInformBo.setSkAccount(companyInfo.getBasicAccountNo()); //收款账号
|
|
|
}
|
|
|
checkInformBo.setPostscript(processInfo.getPostscript());
|
|
|
- String checkJsonString = JSONObject.valueAsStr(checkInformBo);
|
|
|
+// String string = JSONUtils.toJSONString(process);
|
|
|
+ String checkJsonString = JSON.toJSONString(checkInformBo);
|
|
|
+// String checkJsonString = JSONObject.valueAsStr(checkInformBo);
|
|
|
//http请求调用
|
|
|
String testCheckUrl = testHttps + checklUrl;
|
|
|
String prodCheckUrl = prodHttps + checklUrl;
|
|
@@ -225,7 +227,7 @@ public class ProcessInfoServiceImpl /*extends ServiceImpl<ProcessInfoMapper, Pro
|
|
|
payInfomBo.setPayAccount(companyInfo.getBasicAccountNo());
|
|
|
}
|
|
|
payInfomBo.setCost(null);
|
|
|
- String payJsonString = JSONObject.valueAsStr(payInfomBo);
|
|
|
+ String payJsonString = JSON.toJSONString(payInfomBo);
|
|
|
//http请求调用
|
|
|
String testPayUrl = testHttps + payUrl;
|
|
|
String prodPayUrl = prodHttps + payUrl;
|