|
@@ -289,7 +289,7 @@ public class PushFacade {
|
|
SearchData searchData = new SearchData();
|
|
SearchData searchData = new SearchData();
|
|
searchData.setDiag(String.join(",", nameList));
|
|
searchData.setDiag(String.join(",", nameList));
|
|
Response<GdbResponse> graphRes = aiptServiceClient.highRisk(searchData);
|
|
Response<GdbResponse> graphRes = aiptServiceClient.highRisk(searchData);
|
|
- if (graphRes != null) {
|
|
|
|
|
|
+ if (graphRes != null && graphRes.getData() != null) {
|
|
Map<String, String> graphResult = graphRes.getData().getResult();
|
|
Map<String, String> graphResult = graphRes.getData().getResult();
|
|
if (graphResult.size() > 0) {
|
|
if (graphResult.size() > 0) {
|
|
List<String> hrNameList = Lists.newLinkedList();
|
|
List<String> hrNameList = Lists.newLinkedList();
|