|
@@ -63,8 +63,6 @@ public class PushFacade {
|
|
|
@Autowired
|
|
|
private TreatmentFacade treatmentFacade;
|
|
|
@Autowired
|
|
|
- private GraphServiceClient graphServiceClient;
|
|
|
- @Autowired
|
|
|
private LisMappingFacade lisMappingFacade;
|
|
|
@Autowired
|
|
|
private TranServiceClient tranServiceClient;
|
|
@@ -167,7 +165,7 @@ public class PushFacade {
|
|
|
public PushDTO pushInner(PushVO pushVO, Integer mode) {
|
|
|
PushDTO pushDTO = new PushDTO();
|
|
|
SearchData Data = assembleData(pushVO);
|
|
|
-// ResponseData data = pushAI(searchData);
|
|
|
+ // ResponseData data = pushAI(searchData);
|
|
|
ResponseData data = pushAipt(Data);
|
|
|
|
|
|
String featureType = pushVO.getFeatureType();
|
|
@@ -230,7 +228,7 @@ public class PushFacade {
|
|
|
highRiskMap.put("disease", String.join(",", diseaseNameList));
|
|
|
SearchData searchData = new SearchData();
|
|
|
searchData.setDiag(String.join(",", diseaseNameList));
|
|
|
- Response<GdbResponse> graphRes = graphServiceClient.highRiskPageData(searchData);
|
|
|
+ Response<GdbResponse> graphRes = bigDataServiceClient.highRiskPageData(searchData);
|
|
|
if (graphRes != null) {
|
|
|
Map<String, String> graphResult = graphRes.getData().getResult();
|
|
|
if (graphResult.size() > 0) {
|
|
@@ -602,7 +600,7 @@ public class PushFacade {
|
|
|
//警惕
|
|
|
searchData = new SearchData();
|
|
|
searchData.setDiag(String.join(",", disNameList));
|
|
|
- Response<GdbResponse> graphRes = graphServiceClient.highRiskPageData(searchData);
|
|
|
+ Response<GdbResponse> graphRes = bigDataServiceClient.highRiskPageData(searchData);
|
|
|
Map<String, String> graphResult = graphRes.getData().getResult();
|
|
|
if (graphResult.size() > 0) {
|
|
|
List<EMRQuestionDTO> highRiskDisList = Lists.newLinkedList();
|