配置测试环境支付成功回调

This commit is contained in:
谭凯凯
2024-10-10 14:40:06 +08:00
committed by Tankaikai
parent cb2622591c
commit 26d9ec6a6c
2 changed files with 11 additions and 1 deletions

View File

@@ -25,8 +25,11 @@ public class NotifyController {
}
@RequestMapping("notifyPay")
public String notifyPay(@RequestBody Map<String,Object> map){
public String notifyPay(@RequestParam Map<String,Object> map){
log.info("notifyPay:{}", JSON.toJSONString(map));
log.error("notifyPay:{}", JSON.toJSONString(map));
log.debug("notifyPay:{}", JSON.toJSONString(map));
log.warn("notifyPay:{}", JSON.toJSONString(map));
return null;
}