瀏覽代碼

更新图谱节点标签

MarkHuang 4 年之前
父節點
當前提交
24d1910b4b
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      src/main/java/com/diagbot/entity/node/ICDDisease.java

+ 4 - 1
src/main/java/com/diagbot/entity/node/ICDDisease.java

@@ -13,7 +13,7 @@ import java.util.Set;
 @Setter
 @Getter
 //@EqualsAndHashCode(callSuper = false)
-@NodeEntity(label = "医保ICD-10疾病")
+@NodeEntity(label = "医保ICD_10疾病")
 public class ICDDisease extends BaseNode  {
 
     @Property(name="医保ICD-10代码")
@@ -22,6 +22,9 @@ public class ICDDisease extends BaseNode  {
     @Property(name="疾病名称")
     private String othername;
 
+    @Property(name="静态知识")
+    private String knowledge;
+
     @Relationship(type="医保ICD-10疾病相关实验室检查", direction = Relationship.OUTGOING)
     private Set<LIS> liss_dis = new HashSet<>();