| | |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "Authorization", value = "Bearer +token", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....") |
| | | }) |
| | | public ResultUtil<ExploreDatasVo> indexOfExploreDetail(@RequestBody LonLatRequest llrequest){ |
| | | public ResultUtil<ExploreDatasVo> indexOfExploreDetail( LonLatRequest llrequest){ |
| | | try { |
| | | return ResultUtil.success(tsService.queryIndexOfExplores(llrequest)); |
| | | }catch (Exception e){ |
| | |
| | | @ResponseBody |
| | | @PostMapping("/base/exploreWP/noticeDetail") |
| | | @ApiOperation(value = "联系客服-公告详情", tags = {"APP-探索玩湃"}) |
| | | public ResultUtil<SysNotice> queryNotice(@RequestBody Integer noId){ |
| | | public ResultUtil<SysNotice> queryNotice( Integer noId){ |
| | | try { |
| | | return ResultUtil.success(tsService.queryNoticeData(noId)); |
| | | }catch (Exception e){ |
| | |
| | | @ResponseBody |
| | | @PostMapping("/base/exploreWP/exceptionDetail") |
| | | @ApiOperation(value = "联系客服-常见问题详情", tags = {"APP-探索玩湃"}) |
| | | public ResultUtil<QuestionIns> queryQuestionData(@RequestBody Integer quesId){ |
| | | public ResultUtil<QuestionIns> queryQuestionData( Integer quesId){ |
| | | try { |
| | | return ResultUtil.success(tsService.queryQuestionDataInfo(quesId)); |
| | | }catch (Exception e){ |