fix notify
This commit is contained in:
@ -112,7 +112,7 @@ public class PaymentController {
|
|||||||
* 微信支付结果通知
|
* 微信支付结果通知
|
||||||
*/
|
*/
|
||||||
@PostMapping("/notify")
|
@PostMapping("/notify")
|
||||||
public String notify(@PathVariable HttpServletRequest request) {
|
public String notify(HttpServletRequest request) {
|
||||||
try {
|
try {
|
||||||
// 读取微信回调数据
|
// 读取微信回调数据
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
@ -170,7 +170,7 @@ public class PaymentController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
@PostMapping("/refundNotify")
|
@PostMapping("/refundNotify")
|
||||||
public String refundNotify(@PathVariable HttpServletRequest request) {
|
public String refundNotify(HttpServletRequest request) {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// 读取微信退款回调数据
|
// 读取微信退款回调数据
|
||||||
|
|||||||
Reference in New Issue
Block a user