|
@@ -553,6 +553,10 @@ public class RWDDownloadUtil {
|
|
String post_result = HttpClientUtil.post(Constant.zkt_monitor_url + "/logicalObject/listPage", criteria.toJSONString());
|
|
String post_result = HttpClientUtil.post(Constant.zkt_monitor_url + "/logicalObject/listPage", criteria.toJSONString());
|
|
JSONObject resultJSON = JSON.parseObject(post_result);
|
|
JSONObject resultJSON = JSON.parseObject(post_result);
|
|
JSONArray Content = resultJSON.getJSONArray("Content");
|
|
JSONArray Content = resultJSON.getJSONArray("Content");
|
|
|
|
+ for (int i = 0; i < Content.size(); i++) {
|
|
|
|
+ JSONObject ContentItem = (JSONObject) Content.get(i);
|
|
|
|
+ ContentItem.put("logicalGroupingId", logicalGroupingId);
|
|
|
|
+ }
|
|
infoArray.addAll(Content);
|
|
infoArray.addAll(Content);
|
|
}
|
|
}
|
|
infoArray = infoArray == null ? new JSONArray() : infoArray;
|
|
infoArray = infoArray == null ? new JSONArray() : infoArray;
|