From 060b84c46d7097696504aea89f77185320815b07 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期一, 31 三月 2025 21:44:55 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/2.0' into 2.0 --- cloud-server-other/src/main/java/com/dsh/other/feignclient/StoreClient.java | 18 +++++++++++------- 1 files changed, 11 insertions(+), 7 deletions(-) diff --git a/cloud-server-other/src/main/java/com/dsh/other/feignclient/StoreClient.java b/cloud-server-other/src/main/java/com/dsh/other/feignclient/StoreClient.java index 0dc55b4..b51e0d7 100644 --- a/cloud-server-other/src/main/java/com/dsh/other/feignclient/StoreClient.java +++ b/cloud-server-other/src/main/java/com/dsh/other/feignclient/StoreClient.java @@ -11,19 +11,23 @@ @FeignClient(value = "mb-cloud-other") public interface StoreClient { - + /** + * 根据运营商id获取对应运营商商户号 + * @return + */ + @PostMapping("/base/getSMIDByOperatorId") + String getSMIDByOperatorId(Integer id); @PostMapping("/base/protocol/storeDetail/courseOfSto") - StoreDetailOfCourse getCourseOfStore(@RequestParam("storeId") Integer storeId); + StoreDetailOfCourse getCourseOfStore(@RequestParam("storeId") Integer storeId); @PostMapping("/base/protocol/storeDetail/nearbyStore") List<StoreInfo> getAllNearbyStoreList(@RequestBody GetAllNearbyStoreList list); - @PostMapping("/base/protocol/storeDetail/storeOfLonLat") - List<StoreLonLatList> getAllStoreLonLats(@RequestBody GetAllNearbyStoreList list); - - @PostMapping("/base/protocol/storeDetail/distanceCal") - public long calculateDistance(@RequestBody GetDistanceVo distanceVo); + double calculateDistance(@RequestBody GetDistanceVo distanceVo); + + @PostMapping("/base/protocol/storeDetail/citycodeLoLa") + List<StoreDetailList> getQueryStoreList(@RequestBody StoreOfCitycodeResp citycodeResp); } -- Gitblit v1.7.1