脉穴功能

This commit is contained in:
wangjinlei
2023-11-23 14:21:35 +08:00
parent 8fb785743c
commit f804e3c6a1
4 changed files with 32 additions and 2 deletions

View File

@@ -43,7 +43,6 @@ public class AliPayController {
public R notify_url(HttpServletRequest request) {
Map<String, String[]> parameterMap = request.getParameterMap();
String jsonStr = JSONObject.toJSONString(parameterMap);
System.out.println("支付宝回调信息=============》"+jsonStr);
String aliNotify = aliPayService.aliNotify(request);
return R.ok().put("aliNotify",aliNotify);
}