|
@@ -396,7 +396,7 @@ public class KnowledgeServiceImpl implements KnowledgeService {
|
|
|
List<String> bigdataDiagList = new LinkedList<>();//大数据诊断
|
|
|
if (bigdataDiagFeature.size() > 0) {
|
|
|
for (FeatureRate fe : bigdataDiagFeature) {
|
|
|
- if ("neo4j".equals(fe.getSource()) && fe.getDesc().contains("确诊")) {
|
|
|
+ if ("neo4j".equals(fe.getSource()) && (fe.getDesc().contains("确诊") || fe.getDesc().contains("拟诊"))) {
|
|
|
neo4jDiagList.add(fe.getFeatureName());
|
|
|
} else if (fe.getDesc() == null) {
|
|
|
bigdataDiagList.add(fe.getFeatureName());
|
|
@@ -1705,6 +1705,15 @@ public class KnowledgeServiceImpl implements KnowledgeService {
|
|
|
}else if(ni.contains("任七")){
|
|
|
path = 7;
|
|
|
rel = "任七";
|
|
|
+ }else if(ni.contains("任八")){
|
|
|
+ path = 8;
|
|
|
+ rel = "任八";
|
|
|
+ }else if(ni.contains("任九")){
|
|
|
+ path = 9;
|
|
|
+ rel = "任九";
|
|
|
+ }else if(ni.contains("任十")){
|
|
|
+ path = 10;
|
|
|
+ rel = "任十";
|
|
|
}else {
|
|
|
path = 1;
|
|
|
rel = "任一";
|