From 0d998afc5dd5a41851e34d8b8b742e4934e6fd62 Mon Sep 17 00:00:00 2001
From: lisy <linlangsur163@163.com>
Date: 星期四, 03 八月 2023 18:04:21 +0800
Subject: [PATCH] 修复app端加入玩湃中课程列表数据字段bug;使用福利的课时详情的记录bug

---
 cloud-server-account/src/main/java/com/dsh/account/controller/ExploreWPController.java |    7 ++++---
 1 files changed, 4 insertions(+), 3 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 a585588..07ccdea 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
@@ -110,14 +110,15 @@
     @PostMapping("/base/exploreWP/storeList")
     @ApiOperation(value = "联系客服-门店列表", tags = {"APP-探索玩湃"})
     @ApiImplicitParams({
-            @ApiImplicitParam(value = "距离数值", name = "space", required = true, dataType = "int"),
+            @ApiImplicitParam(value = "1=升序/2=降序", name = "space", required = true, dataType = "int"),
             @ApiImplicitParam(value = "城市code", name = "space", required = true, dataType = "string"),
             @ApiImplicitParam(value = "纬度", name = "latitude", required = true, dataType = "string"),
             @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){
+    public ResultUtil<List<StoreDetailList>> getStoreListCon(Integer space,String cityCode,String latitude,String longitude,String search){
         try {
-            return ResultUtil.success(tsService.queryStoreList(space,cityCode,latitude,longitude));
+            return ResultUtil.success(tsService.queryStoreList(space,cityCode,latitude,longitude,search));
         }catch (Exception e){
             return ResultUtil.runErr();
         }

--
Gitblit v1.7.1