generated from root/miduo_server
master
parent
5272dc8c01
commit
7e58454a6f
|
@ -111,16 +111,13 @@ public class HaoGameRechargeController {
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequestMapping(value = "/haoGameCallback")
|
@RequestMapping(value = "/haoGameCallback")
|
||||||
public String haoGameCallback(HttpServletRequest request, @RequestBody HaoGameParam haoGamePram) throws Exception {
|
public String haoGameCallback(HttpServletRequest request) throws Exception {
|
||||||
LOGGER.info("haoGameCallback 收到好游戏支付回调");
|
LOGGER.info("haoGameCallback 收到好游戏支付回调");
|
||||||
HashMap<String, String> parameterMap = JsonUtil.getInstence().getParameterMapYX(request);
|
HashMap<String, String> parameterMap = JsonUtil.getInstence().getParameterMapYX(request);
|
||||||
if (parameterMap.isEmpty()) {
|
if (parameterMap.isEmpty()) {
|
||||||
LOGGER.info("data is null");
|
LOGGER.info("data is null");
|
||||||
return "failure";
|
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 outtradeno = parameterMap.get("outtradeno");
|
||||||
String orderId = parameterMap.get("tradeno");
|
String orderId = parameterMap.get("tradeno");
|
||||||
String status = parameterMap.get("status");
|
String status = parameterMap.get("status");
|
||||||
|
|
Loading…
Reference in New Issue