| | |
| | | private PayMoneyUtil payMoneyUtil; |
| | | |
| | | |
| | | |
| | | @ResponseBody |
| | | @PostMapping("/getIntro") |
| | | @ApiOperation(value = "获取步骤说明", tags = {"用户—游戏"}) |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "Authorization", value = "Bearer +token", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."), |
| | | }) |
| | | public ResultUtil<String> getIntro(){ |
| | | try { |
| | | |
| | | return ResultUtil.success( gameService.getIntro()); |
| | | }catch (Exception e){ |
| | | e.printStackTrace(); |
| | | return ResultUtil.runErr(); |
| | | } |
| | | } |
| | | |
| | | |
| | | @ResponseBody |
| | | @PostMapping("/queryGameList") |
| | | @ApiOperation(value = "获取当前场地的游戏列表配置", tags = {"用户—游戏"}) |