|
@@ -408,6 +408,18 @@ public class EntityFacade {
|
|
nodeinfo.put("range", entityProp.getRange());
|
|
nodeinfo.put("range", entityProp.getRange());
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if (StringUtil.isNotBlank(entityProp.getPycode())) {
|
|
|
|
+ nodeinfo.put("pycode", entityProp.getPycode());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (StringUtil.isNotBlank(entityProp.getKnowledge())) {
|
|
|
|
+ nodeinfo.put("knowledge", entityProp.getKnowledge());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (null!=entityProp.getIs_kl()) {
|
|
|
|
+ nodeinfo.put("is_kl", entityProp.getIs_kl());
|
|
|
|
+ }
|
|
|
|
+
|
|
return nodeinfo;
|
|
return nodeinfo;
|
|
}
|
|
}
|
|
|
|
|