From aa925d851857f50eff0556411366690d9a78a0e5 Mon Sep 17 00:00:00 2001
From: 44323 <443237572@qq.com>
Date: 星期一, 27 十一月 2023 17:30:26 +0800
Subject: [PATCH] Merge branch 'master' of http://120.76.84.145:10101/gitblit/r/java/PlayPai

---
 cloud-server-account/src/main/java/com/dsh/account/controller/ExploreWPController.java |   35 ++++++++++++++++-------------------
 1 files changed, 16 insertions(+), 19 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 2f09f2a..b421fad 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
@@ -34,23 +34,22 @@
     @ApiImplicitParams({
             @ApiImplicitParam(name = "Authorization", value = "Bearer +token", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....")
     })
-    public ResultUtil<List<StoreInfo>> indexOfExploreDetail(LonLatRequest llrequest){
+    public ResultUtil<List<StoreInfo>> indexOfExploreDetail(LonLatRequest llrequest) {
         try {
             return ResultUtil.success(tsService.queryIndexOfExplores(llrequest));
-        }catch (Exception e){
+        } catch (Exception e) {
             return ResultUtil.runErr();
         }
     }
 
 
-
     @ResponseBody
     @PostMapping("/base/exploreWP/noticeList")
     @ApiOperation(value = "联系客服-公告列表", tags = {"APP-探索玩湃"})
-    public ResultUtil<List<SysNotice>> queryNoticeListDatas(){
+    public ResultUtil<List<SysNotice>> queryNoticeListDatas() {
         try {
             return ResultUtil.success(tsService.querySystemNoticeDetails());
-        }catch (Exception e){
+        } catch (Exception e) {
             return ResultUtil.runErr();
         }
     }
@@ -59,10 +58,10 @@
     @ResponseBody
     @PostMapping("/base/exploreWP/noticeDetail")
     @ApiOperation(value = "联系客服-公告详情", tags = {"APP-探索玩湃"})
-    public ResultUtil<SysNotice> queryNotice(Integer noId){
+    public ResultUtil<SysNotice> queryNotice(Integer noId) {
         try {
             return ResultUtil.success(tsService.queryNoticeData(noId));
-        }catch (Exception e){
+        } catch (Exception e) {
             return ResultUtil.runErr();
         }
     }
@@ -71,11 +70,11 @@
     @ResponseBody
     @PostMapping("/base/exploreWP/exceptionList")
     @ApiOperation(value = "联系客服-常见问题列表", tags = {"APP-探索玩湃"})
-    public ResultUtil<List<QuestionIns>> queryFrequentlyAskedQuestionDetails(){
+    public ResultUtil<List<QuestionIns>> queryFrequentlyAskedQuestionDetails() {
         try {
             List<QuestionIns> questionIns = tsService.queryQuestionData();
             return ResultUtil.success(questionIns);
-        }catch (Exception e){
+        } catch (Exception e) {
             return ResultUtil.runErr();
         }
     }
@@ -87,10 +86,10 @@
     @ApiImplicitParams({
             @ApiImplicitParam(value = "问题记录id", name = "quesId", required = true, dataType = "int"),
     })
-    public ResultUtil<QuestionIns> queryQuestionData(Integer quesId){
+    public ResultUtil<QuestionIns> queryQuestionData(Integer quesId) {
         try {
             return ResultUtil.success(tsService.queryQuestionDataInfo(quesId));
-        }catch (Exception e){
+        } catch (Exception e) {
             return ResultUtil.runErr();
         }
     }
@@ -98,10 +97,10 @@
     @ResponseBody
     @PostMapping("/base/exploreWP/customerList")
     @ApiOperation(value = "联系客服-客服电话列表", tags = {"APP-探索玩湃"})
-    public ResultUtil<List<String>> queryCustomerData(){
+    public ResultUtil<List<String>> queryCustomerData() {
         try {
             return ResultUtil.success(tsService.queryCustomerDetails());
-        }catch (Exception e){
+        } catch (Exception e) {
             return ResultUtil.runErr();
         }
     }
@@ -117,9 +116,9 @@
             @ApiImplicitParam(value = "经度", name = "longitude", required = true, dataType = "string"),
             @ApiImplicitParam(value = "搜索", name = "search", required = true, dataType = "string"),
     })
-    public ResultUtil<List<StoreDetailList>> getStoreListCon(Integer space,String cityCode,String latitude,String longitude,String search){
+    public ResultUtil<List<StoreDetailList>> getStoreListCon(Integer space, String cityCode, String latitude, String longitude, String search) {
 //        try {
-            return ResultUtil.success(tsService.queryStoreList(space,cityCode,longitude,latitude,search));
+        return ResultUtil.success(tsService.queryStoreList(space, cityCode, longitude, latitude, search));
 //        }catch (Exception e){
 //            return ResultUtil.runErr();
 //        }
@@ -132,15 +131,13 @@
     @ApiImplicitParams({
             @ApiImplicitParam(value = "门店id", name = "storeId", required = true, dataType = "int"),
     })
-    public ResultUtil<StoreDetailsVo> getStoreDetails(Integer storeId){
+    public ResultUtil<StoreDetailsVo> getStoreDetails(Integer storeId) {
         try {
             return ResultUtil.success(tsService.getStoreDetail(storeId));
-        }catch (Exception e){
+        } catch (Exception e) {
             return ResultUtil.runErr();
         }
     }
-
-
 
 
 }

--
Gitblit v1.7.1