From cee52521bbdb998745ca9a0dc6866667e606b79c Mon Sep 17 00:00:00 2001 From: nickchange <126672920+nickchange@users.noreply.github.com> Date: 星期五, 20 十月 2023 10:26:09 +0800 Subject: [PATCH] 10.20 --- cloud-server-other/src/main/java/com/dsh/other/service/StoreService.java | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/cloud-server-other/src/main/java/com/dsh/other/service/StoreService.java b/cloud-server-other/src/main/java/com/dsh/other/service/StoreService.java index 068bebd..7e86ff6 100644 --- a/cloud-server-other/src/main/java/com/dsh/other/service/StoreService.java +++ b/cloud-server-other/src/main/java/com/dsh/other/service/StoreService.java @@ -6,6 +6,7 @@ import com.dsh.other.model.ProvinceAndCityVo; import java.util.List; +import java.util.Map; /** @@ -36,7 +37,7 @@ * @return * @throws Exception */ - List<BaseVo> queryStoreLists(String lon, String lat) throws Exception; + List<BaseVo> queryStoreLists(String lon, String lat,String cityCode) throws Exception; /** @@ -64,4 +65,11 @@ */ List<BaseVo> queryStoreByCityCode(String cityCode) throws Exception; + List<Store> getStoreByCityManagerId(Integer id); + + List<Store> getStoreByStoreStaffId(Integer id); + + String getOName(Integer operatorId); + + List<Map<String, Object>> game(Integer appUserId); } -- Gitblit v1.7.1