feat: 中台端口修改, 9999改成8901

This commit is contained in:
xiang2lin 2024-09-30 10:25:16 +08:00
parent b4021a91e2
commit f893941710
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ public class SalesBillingServiceImpl implements ISalesBillingService {
.put("secretKey", secretKey)
.put("appId", appId)
.build();
String res = HttpRequest.post("http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface").addHeaders(header).body(params).timeout(60000).execute().body();
String res = HttpRequest.post("http://127.0.0.1:8901/kangarooDataCenterV3/entranceController/externalCallInterface").addHeaders(header).body(params).timeout(60000).execute().body();
return res;
}
}