From 7ff6e6ac3d2cca7593162eb49d135cc0cb6b9105 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期二, 11 一月 2022 10:15:54 +0800
Subject: [PATCH] 云卓全景支付 开发完成

---
 service-api/src/main/java/com/java110/api/smo/impl/FloorServiceSMOImpl.java |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/service-api/src/main/java/com/java110/api/smo/impl/FloorServiceSMOImpl.java b/service-api/src/main/java/com/java110/api/smo/impl/FloorServiceSMOImpl.java
index 0b8ef4f3..f170af9 100644
--- a/service-api/src/main/java/com/java110/api/smo/impl/FloorServiceSMOImpl.java
+++ b/service-api/src/main/java/com/java110/api/smo/impl/FloorServiceSMOImpl.java
@@ -50,7 +50,7 @@
         ComponentValidateResult result = super.validateStoreStaffCommunityRelationship(pd, restTemplate);
 
         ResponseEntity responseEntity = this.callCenterService(restTemplate, pd, "",
-                ServiceConstant.SERVICE_API_URL + "/api/floor.queryFloors" +  mapToUrlParam(paramIn),
+                "floor.queryFloors" +  mapToUrlParam(paramIn),
                 HttpMethod.GET);
 
         return responseEntity;
@@ -92,7 +92,7 @@
         String storeTypeCd = JSONObject.parseObject(responseEntity.getBody().toString()).getString("storeTypeCd");
         //鏁版嵁鏍¢獙鏄惁 鍟嗘埛鏄惁鍏ラ┗璇ュ皬鍖�
         super.checkStoreEnterCommunity(pd, storeId, storeTypeCd, communityId, restTemplate);
-        String apiUrl = ServiceConstant.SERVICE_API_URL + "/api/floor.queryFloors" + mapToUrlParam(paramIn);
+        String apiUrl = "floor.queryFloors" + mapToUrlParam(paramIn);
 
         responseEntity = this.callCenterService(restTemplate, pd, "",
                 apiUrl,
@@ -131,7 +131,7 @@
         super.checkStoreEnterCommunity(pd, storeId, storeTypeCd, communityId, restTemplate);
         paramIn.put("userId", pd.getUserId());
         responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
-                ServiceConstant.SERVICE_API_URL + "/api/floor.saveFloor",
+                "floor.saveFloor",
                 HttpMethod.POST);
 
         return responseEntity;
@@ -167,7 +167,7 @@
         paramIn.put("userId", pd.getUserId());
         paramIn.put("name", paramIn.getString("floorName"));
         responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
-                ServiceConstant.SERVICE_API_URL + "/api/floor.editFloor",
+                "floor.editFloor",
                 HttpMethod.POST);
 
         return responseEntity;
@@ -193,7 +193,7 @@
         super.checkStoreEnterCommunity(pd, storeId, storeTypeCd, communityId, restTemplate);
 
         responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
-                ServiceConstant.SERVICE_API_URL + "/api/floor.deleteFloor",
+                "floor.deleteFloor",
                 HttpMethod.POST);
 
         return responseEntity;

--
Gitblit v1.8.0