From c81d766cd91be3b3a24c8db94dcd93c071a66c62 Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期五, 14 七月 2023 09:30:19 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- cloud-server-account/src/main/java/com/dsh/account/controller/ExploreWPController.java | 30 +++++++++--------------------- 1 files changed, 9 insertions(+), 21 deletions(-) diff --git a/cloud-server-account/src/main/java/com/dsh/account/controller/ExploreWPController.java b/cloud-server-account/src/main/java/com/dsh/account/controller/ExploreWPController.java index cd8aaf7..64fd0c1 100644 --- a/cloud-server-account/src/main/java/com/dsh/account/controller/ExploreWPController.java +++ b/cloud-server-account/src/main/java/com/dsh/account/controller/ExploreWPController.java @@ -28,12 +28,12 @@ private TStudentService tsService; @ResponseBody - @PostMapping("/base/exploreWP/noticeList") + @PostMapping("/api/exploreWP/indexOfEx") @ApiOperation(value = "联系客服-探索首页", tags = {"APP-探索玩湃"}) @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){ @@ -46,9 +46,6 @@ @ResponseBody @PostMapping("/base/exploreWP/noticeList") @ApiOperation(value = "联系客服-公告列表", tags = {"APP-探索玩湃"}) - @ApiImplicitParams({ - @ApiImplicitParam(name = "Authorization", value = "Bearer +token", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....") - }) public ResultUtil<List<SysNotice>> queryNoticeListDatas(){ try { return ResultUtil.success(tsService.querySystemNoticeDetails()); @@ -59,12 +56,9 @@ @ResponseBody - @PostMapping("/base/exploreWP/noticeList") + @PostMapping("/base/exploreWP/noticeDetail") @ApiOperation(value = "联系客服-公告详情", tags = {"APP-探索玩湃"}) - @ApiImplicitParams({ - @ApiImplicitParam(name = "Authorization", value = "Bearer +token", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....") - }) - public ResultUtil<SysNotice> queryNotice(@RequestBody Integer noId){ + public ResultUtil<SysNotice> queryNotice(Integer noId){ try { return ResultUtil.success(tsService.queryNoticeData(noId)); }catch (Exception e){ @@ -74,11 +68,8 @@ @ResponseBody - @PostMapping("/base/exploreWP/noticeList") + @PostMapping("/base/exploreWP/exceptionList") @ApiOperation(value = "联系客服-常见问题列表", tags = {"APP-探索玩湃"}) - @ApiImplicitParams({ - @ApiImplicitParam(name = "Authorization", value = "Bearer +token", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....") - }) public ResultUtil<QuestionDetailsVo> queryFrequentlyAskedQuestionDetails(){ try { return ResultUtil.success(tsService.queryQuestionData()); @@ -89,12 +80,12 @@ @ResponseBody - @PostMapping("/base/exploreWP/noticeList") + @PostMapping("/base/exploreWP/exceptionDetail") @ApiOperation(value = "联系客服-常见问题详情", tags = {"APP-探索玩湃"}) @ApiImplicitParams({ - @ApiImplicitParam(name = "Authorization", value = "Bearer +token", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....") + @ApiImplicitParam(value = "问题记录id", name = "quesId", required = true, dataType = "int"), }) - public ResultUtil<QuestionIns> queryQuestionData(@RequestBody Integer quesId){ + public ResultUtil<QuestionIns> queryQuestionData(Integer quesId){ try { return ResultUtil.success(tsService.queryQuestionDataInfo(quesId)); }catch (Exception e){ @@ -103,11 +94,8 @@ } @ResponseBody - @PostMapping("/base/exploreWP/noticeList") + @PostMapping("/base/exploreWP/customerList") @ApiOperation(value = "联系客服-客服电话列表", tags = {"APP-探索玩湃"}) - @ApiImplicitParams({ - @ApiImplicitParam(name = "Authorization", value = "Bearer +token", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....") - }) public ResultUtil<List<String>> queryCustomerData(){ try { return ResultUtil.success(tsService.queryCustomerDetails()); -- Gitblit v1.7.1