Correction of the same typos
This commit is contained in:
parent
72ea3273c7
commit
240422aa94
@ -2199,7 +2199,7 @@ public class RestClient implements ClientHttpRequestInterceptor, Closeable {
|
||||
Map<String, String> params = new HashMap<>();
|
||||
addPageLinkToParam(params, pageLink);
|
||||
return restTemplate.exchange(
|
||||
baseURL + "/api/tenantProfileInfos" + getUrlParams(pageLink),
|
||||
baseURL + "/api/tenantProfileInfos?" + getUrlParams(pageLink),
|
||||
HttpMethod.GET,
|
||||
HttpEntity.EMPTY,
|
||||
new ParameterizedTypeReference<PageData<EntityInfo>>() {
|
||||
@ -2256,7 +2256,7 @@ public class RestClient implements ClientHttpRequestInterceptor, Closeable {
|
||||
Map<String, String> params = new HashMap<>();
|
||||
addPageLinkToParam(params, pageLink);
|
||||
return restTemplate.exchange(
|
||||
baseURL + "/api/users" + getUrlParams(pageLink),
|
||||
baseURL + "/api/users?" + getUrlParams(pageLink),
|
||||
HttpMethod.GET,
|
||||
HttpEntity.EMPTY,
|
||||
new ParameterizedTypeReference<PageData<User>>() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user