From e350ed7ffc3a57387186c602d99443d6f936d549 Mon Sep 17 00:00:00 2001
From: puzhibing <393733352@qq.com>
Date: 星期三, 05 七月 2023 08:31:25 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 cloud-server-account/src/main/java/com/dsh/account/controller/ExploreWPController.java |   17 +----------------
 1 files changed, 1 insertions(+), 16 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..aee00e1 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,7 +28,7 @@
     private TStudentService tsService;
 
     @ResponseBody
-    @PostMapping("/base/exploreWP/noticeList")
+    @PostMapping("/api/exploreWP/noticeList")
     @ApiOperation(value = "联系客服-探索首页", tags = {"APP-探索玩湃"})
     @ApiImplicitParams({
             @ApiImplicitParam(name = "Authorization", value = "Bearer +token", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....")
@@ -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());
@@ -61,9 +58,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<SysNotice> queryNotice(@RequestBody Integer noId){
         try {
             return ResultUtil.success(tsService.queryNoticeData(noId));
@@ -76,9 +70,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<QuestionDetailsVo> queryFrequentlyAskedQuestionDetails(){
         try {
             return ResultUtil.success(tsService.queryQuestionData());
@@ -91,9 +82,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<QuestionIns> queryQuestionData(@RequestBody Integer quesId){
         try {
             return ResultUtil.success(tsService.queryQuestionDataInfo(quesId));
@@ -105,9 +93,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<String>> queryCustomerData(){
         try {
             return ResultUtil.success(tsService.queryCustomerDetails());

--
Gitblit v1.7.1