-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎨 #3056 【微信支付】优化支付/退款结果解析,增加对V3版本服务商的下单/退款支持
- Loading branch information
1 parent
211f4c7
commit 21a95e1
Showing
10 changed files
with
1,609 additions
and
30 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
...va-pay/src/main/java/com/github/binarywang/wxpay/bean/notify/WxPayBaseNotifyV3Result.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package com.github.binarywang.wxpay.bean.notify; | ||
|
||
/** | ||
* 微信支付公用回调 | ||
* | ||
* @author Pursuer | ||
* @version 1.0 | ||
* @date 2023/6/15 | ||
*/ | ||
public interface WxPayBaseNotifyV3Result<T> { | ||
/** | ||
* 设置原始数据 | ||
* | ||
* @param rawData 原始数据 | ||
* @author Pursuer | ||
* @date 2023/6/15 | ||
* @since 1.0 | ||
**/ | ||
void setRawData(OriginNotifyResponse rawData); | ||
|
||
/** | ||
* 解密后的数据 | ||
* | ||
* @param data 解密后的数据 | ||
* @author Pursuer | ||
* @date 2023/6/15 | ||
* @since 1.0 | ||
**/ | ||
void setResult(T data); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.