|
|
|
@@ -56,13 +56,13 @@ public class WxGameController extends BaseController { |
|
|
|
@ApiImplicitParams({ |
|
|
|
@ApiImplicitParam(name = "gameId", value = "游戏ID", dataType = "String", paramType = "query", required = true), |
|
|
|
@ApiImplicitParam(name = "orderId", value = "券订单ID", dataType = "String", paramType = "query", required = true)}) |
|
|
|
public ResultData addActionLog(String gameId, String orderId) { |
|
|
|
public ResultData addActionLog(@RequestBody Map<String,String> paramMap) { |
|
|
|
Long gameIdL = null; |
|
|
|
Long orderIdL = null; |
|
|
|
|
|
|
|
try { |
|
|
|
gameIdL = Long.valueOf(gameId); |
|
|
|
orderIdL = Long.valueOf(orderId); |
|
|
|
gameIdL = Long.valueOf(paramMap.get("gameId")); |
|
|
|
orderIdL = Long.valueOf(paramMap.get("orderId")); |
|
|
|
} catch (Exception e){ |
|
|
|
return new ResultData(ErrorCode.SYS_PARAMETER_ERROR); |
|
|
|
} |
|
|
|
|