|
@ -158,8 +158,11 @@ public class RsResourceServiceImpl implements IRsResourceService {
|
|
|
public String searchRomoteResourceList(String code, Map<String, Object> params) throws Exception {
|
|
|
String result = HttpHelper.getByGateway(code, params).getBody();
|
|
|
JSONObject jsonobject = JSONObject.fromObject(result);
|
|
|
String response_params = (String) jsonobject.get("responseResult");
|
|
|
return response_params;
|
|
|
Object response_params = jsonobject.get("responseResult");
|
|
|
if (response_params.equals("null")) {
|
|
|
return "";
|
|
|
}
|
|
|
return (String) response_params;
|
|
|
}
|
|
|
|
|
|
@Override
|