|
|
@ -44,24 +44,32 @@ public class FdpListTableDataServiceImpl implements IFdpListTableDataService { |
|
|
|
private String getNeoFaultPropertyList; |
|
|
|
private String getNeoFaultPropertyList; |
|
|
|
@Value("${url.getNeoFaultTableData}") |
|
|
|
@Value("${url.getNeoFaultTableData}") |
|
|
|
private String getNeoFaultTableData; |
|
|
|
private String getNeoFaultTableData; |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public R getProperty(String property) { |
|
|
|
public R getProperty(String property) { |
|
|
|
Map<String, Object> params = new HashMap<>(); |
|
|
|
Map<String, Object> params = new HashMap<>(); |
|
|
|
params.put("property", property); |
|
|
|
params.put("property", property); |
|
|
|
|
|
|
|
Long startMillis=System.currentTimeMillis(); |
|
|
|
String result = HttpRequestUtil.postCall(params, getNeoFaultPropertyList, "POST"); |
|
|
|
String result = HttpRequestUtil.postCall(params, getNeoFaultPropertyList, "POST"); |
|
|
|
|
|
|
|
log.info("fdp查询列表项"+property+"耗时:"+(System.currentTimeMillis()-startMillis)+"ms"); |
|
|
|
|
|
|
|
Long endMillis=System.currentTimeMillis(); |
|
|
|
if ("STATION".equals(property)) { |
|
|
|
if ("STATION".equals(property)) { |
|
|
|
List<StationEntity> list = new ArrayList<>(); |
|
|
|
List<StationEntity> list = new ArrayList<>(); |
|
|
|
R<List<String>> res = JSONObject.parseObject(result, new TypeReference<R<List<String>>>() { |
|
|
|
R<List<String>> res = JSONObject.parseObject(result, new TypeReference<R<List<String>>>() { |
|
|
|
}); |
|
|
|
}); |
|
|
|
if (res.isSuccess() && CollectionUtil.isNotEmpty(res.getData())) { |
|
|
|
if (res.isSuccess() && CollectionUtil.isNotEmpty(res.getData())) { |
|
|
|
|
|
|
|
R<List<StationEntity>> listAll = stationClient.getListAll(); |
|
|
|
|
|
|
|
if (listAll.isSuccess() && ObjectUtil.isNotEmpty(listAll.getData())) { |
|
|
|
for (String s : res.getData()) { |
|
|
|
for (String s : res.getData()) { |
|
|
|
R<StationEntity> stationEntityR = stationClient.getStationByCode(s); |
|
|
|
for (StationEntity station : listAll.getData()) { |
|
|
|
if (stationEntityR.isSuccess()&&ObjectUtil.isNotEmpty(stationEntityR.getData())){ |
|
|
|
if (station.getCode().equals(s)) { |
|
|
|
StationEntity station = stationEntityR.getData(); |
|
|
|
|
|
|
|
list.add(station); |
|
|
|
list.add(station); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
log.info("fdp查询站点列表项:耗时:"+(System.currentTimeMillis()-endMillis)+"ms"); |
|
|
|
return R.data(list); |
|
|
|
return R.data(list); |
|
|
|
} |
|
|
|
} |
|
|
|
R<List<String>> res = JSONObject.parseObject(result, new TypeReference<R<List<String>>>() { |
|
|
|
R<List<String>> res = JSONObject.parseObject(result, new TypeReference<R<List<String>>>() { |
|
|
|