1
0
mirror of synced 2025-12-28 14:07:58 +08:00

🎨 #3056 【微信支付】优化支付/退款结果解析,增加对V3版本服务商的下单/退款支持

This commit is contained in:
Pursuer丶
2023-06-16 16:22:59 +08:00
committed by Binary Wang
parent 211f4c7f74
commit 21a95e15df
10 changed files with 1609 additions and 30 deletions

View File

@@ -796,7 +796,7 @@ public class BaseWxPayServiceImplTest {
log.info("请求头参数为timestamp:{} nonce:{} serialNo:{} signature:{}", timestamp, nonce, serialNo, signature);
// V2版本请参考com.github.binarywang.wxpay.bean.notify.WxPayRefundNotifyResultTest里的单元测试
final WxPayOrderNotifyV3Result wxPayOrderNotifyV3Result = this.payService.parseOrderNotifyV3Result(RequestUtils.readData(request),
final WxPayNotifyV3Result wxPayOrderNotifyV3Result = this.payService.parseOrderNotifyV3Result(RequestUtils.readData(request),
new SignatureHeader(timestamp, nonce, signature, serialNo));
log.info(GSON.toJson(wxPayOrderNotifyV3Result));