Browse Source

更新图谱节点标签

MarkHuang 4 years ago
parent
commit
24d1910b4b
1 changed files with 4 additions and 1 deletions
  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
 @Setter
 @Getter
 @Getter
 //@EqualsAndHashCode(callSuper = false)
 //@EqualsAndHashCode(callSuper = false)
-@NodeEntity(label = "医保ICD-10疾病")
+@NodeEntity(label = "医保ICD_10疾病")
 public class ICDDisease extends BaseNode  {
 public class ICDDisease extends BaseNode  {
 
 
     @Property(name="医保ICD-10代码")
     @Property(name="医保ICD-10代码")
@@ -22,6 +22,9 @@ public class ICDDisease extends BaseNode  {
     @Property(name="疾病名称")
     @Property(name="疾病名称")
     private String othername;
     private String othername;
 
 
+    @Property(name="静态知识")
+    private String knowledge;
+
     @Relationship(type="医保ICD-10疾病相关实验室检查", direction = Relationship.OUTGOING)
     @Relationship(type="医保ICD-10疾病相关实验室检查", direction = Relationship.OUTGOING)
     private Set<LIS> liss_dis = new HashSet<>();
     private Set<LIS> liss_dis = new HashSet<>();