From 7e58454a6f01fd97153885206678e9b06a1daf05 Mon Sep 17 00:00:00 2001 From: jiahuiwen Date: Wed, 27 Oct 2021 14:06:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/jmfy/controller/HaoGameRechargeController.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main/java/com/jmfy/controller/HaoGameRechargeController.java b/src/main/java/com/jmfy/controller/HaoGameRechargeController.java index 1b701af..97cb14a 100644 --- a/src/main/java/com/jmfy/controller/HaoGameRechargeController.java +++ b/src/main/java/com/jmfy/controller/HaoGameRechargeController.java @@ -111,16 +111,13 @@ public class HaoGameRechargeController { } @RequestMapping(value = "/haoGameCallback") - public String haoGameCallback(HttpServletRequest request, @RequestBody HaoGameParam haoGamePram) throws Exception { + public String haoGameCallback(HttpServletRequest request) throws Exception { LOGGER.info("haoGameCallback 收到好游戏支付回调"); HashMap parameterMap = JsonUtil.getInstence().getParameterMapYX(request); if (parameterMap.isEmpty()) { LOGGER.info("data is null"); return "failure"; } - LOGGER.info("haoGameCallback parameterMap getOuttradeno={} getTradeno={} getAmount={} getExtra={} getOpenid={} ", - haoGamePram.getOuttradeno(), haoGamePram.getTradeno(), haoGamePram.getAmount(), - haoGamePram.getExtra(), haoGamePram.getOpenid()); String outtradeno = parameterMap.get("outtradeno"); String orderId = parameterMap.get("tradeno"); String status = parameterMap.get("status");