From ce64e667815b39efdc2f8bd52be0d43d49db8d84 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期日, 17 七月 2022 00:06:29 +0800
Subject: [PATCH] 优化小区位置
---
service-api/src/main/java/com/java110/api/smo/payment/impl/RentingToPaySMOImpl.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/service-api/src/main/java/com/java110/api/smo/payment/impl/RentingToPaySMOImpl.java b/service-api/src/main/java/com/java110/api/smo/payment/impl/RentingToPaySMOImpl.java
index 01ffe5c..647014f 100644
--- a/service-api/src/main/java/com/java110/api/smo/payment/impl/RentingToPaySMOImpl.java
+++ b/service-api/src/main/java/com/java110/api/smo/payment/impl/RentingToPaySMOImpl.java
@@ -23,7 +23,7 @@
import com.java110.utils.util.StringUtil;
import com.java110.vo.ResultVo;
import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import com.java110.core.log.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpMethod;
import org.springframework.http.HttpStatus;
@@ -77,7 +77,7 @@
//鏌ヨ鐢ㄦ埛ID
paramIn.put("userId", pd.getUserId());
//鏌ヨ
- String url = ServiceConstant.SERVICE_API_URL + "/api/renting/queryRentingPool?rentingId="
+ String url = "/renting/queryRentingPool?rentingId="
+ paramIn.getString("rentingId") + "&row=1&page=1";
responseEntity = super.callCenterService(restTemplate, pd, "", url, HttpMethod.GET);
@@ -158,7 +158,7 @@
"", "", "", "",
pd.getAppId());
responseEntity = this.callCenterService(restTemplate, pd, "",
- ServiceConstant.SERVICE_API_URL + "/api/smallWeChat.listSmallWeChats?appId="
+ "smallWeChat.listSmallWeChats?appId="
+ paramIn.getString("appId") + "&page=1&row=1", HttpMethod.GET);
if (responseEntity.getStatusCode() != HttpStatus.OK) {
--
Gitblit v1.8.0