|
@@ -7,6 +7,7 @@ import lombok.Getter;
|
|
import lombok.Setter;
|
|
import lombok.Setter;
|
|
import org.neo4j.ogm.annotation.Labels;
|
|
import org.neo4j.ogm.annotation.Labels;
|
|
import org.neo4j.ogm.annotation.NodeEntity;
|
|
import org.neo4j.ogm.annotation.NodeEntity;
|
|
|
|
+import org.neo4j.ogm.annotation.Property;
|
|
import org.neo4j.ogm.annotation.Relationship;
|
|
import org.neo4j.ogm.annotation.Relationship;
|
|
|
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
@@ -19,6 +20,15 @@ import java.util.Set;
|
|
@NodeEntity(label = "实验室检查")
|
|
@NodeEntity(label = "实验室检查")
|
|
public class LIS extends BaseNode {
|
|
public class LIS extends BaseNode {
|
|
|
|
|
|
|
|
+ @Property(name = "最大值")
|
|
|
|
+ private String maxval;
|
|
|
|
+
|
|
|
|
+ @Property(name = "最小值")
|
|
|
|
+ private String minval;
|
|
|
|
+
|
|
|
|
+ @Property(name = "单位")
|
|
|
|
+ private String unit;
|
|
|
|
+
|
|
@Relationship(type="实验室检查禁忌性别", direction = Relationship.OUTGOING)
|
|
@Relationship(type="实验室检查禁忌性别", direction = Relationship.OUTGOING)
|
|
private Gender gender;
|
|
private Gender gender;
|
|
|
|
|