This commit is contained in:
2025-07-14 18:54:58 +08:00
parent ef254199c4
commit 57c04f0e4f

View File

@@ -47,10 +47,6 @@ public class V5PayService {
log.info("v5pay-post :{}", jsonString);
String resultBody = HttpUtils.doPostForJson(v5PayConfig.getCreateUrl(), jsonString);
log.info("V5PayService.createOrder resultBody:{}" , resultBody);
JSONObject jsonObject = JSON.parseObject(resultBody);
Map<String, Object> resultObject = convertJsonToMapExcludeSign(jsonObject);
String responseSign = signature(buildPlainText(resultObject));
log.info("V5PayService.createOrder responseSign:{}" , responseSign);
return JSONObject.parseObject(resultBody, V5PayResponseVo.class);
} catch (Exception e) {
log.error("V5PayService.createOrder:e:{}", e);