增加支付回调地址的配置

This commit is contained in:
YunaiV
2021-10-25 10:04:11 +08:00
parent 20628987c9
commit bac30d47b7
2 changed files with 8 additions and 6 deletions

View File

@ -49,9 +49,10 @@ public class PayOrderController {
// ========== 支付渠道的回调 ==========
@PostMapping("/notify/wx-pub")
@PostMapping("/notify/wx-pub/{channelId}")
@ApiOperation("通知微信公众号的结果")
public String notifyWxPayOrder(@RequestBody String xmlData) {
public String notifyWxPayOrder(@PathVariable("channelId") Long channelId,
@RequestBody String xmlData) {
System.out.println(xmlData);
return "success";
}