|
@@ -4,19 +4,20 @@ import com.diagbot.entity.node.base.BaseNode;
|
|
import com.diagbot.entity.relationship.LisNameLisSet;
|
|
import com.diagbot.entity.relationship.LisNameLisSet;
|
|
import com.diagbot.entity.relationship.LisSetGender;
|
|
import com.diagbot.entity.relationship.LisSetGender;
|
|
import com.diagbot.entity.relationship.LisSetGroup;
|
|
import com.diagbot.entity.relationship.LisSetGroup;
|
|
|
|
+import com.diagbot.entity.relationship.LisSetOralMedicine;
|
|
import lombok.Getter;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
import lombok.Setter;
|
|
import org.neo4j.ogm.annotation.NodeEntity;
|
|
import org.neo4j.ogm.annotation.NodeEntity;
|
|
import org.neo4j.ogm.annotation.Property;
|
|
import org.neo4j.ogm.annotation.Property;
|
|
import org.neo4j.ogm.annotation.Relationship;
|
|
import org.neo4j.ogm.annotation.Relationship;
|
|
|
|
|
|
-import java.util.Set;
|
|
|
|
import java.util.HashSet;
|
|
import java.util.HashSet;
|
|
|
|
+import java.util.Set;
|
|
|
|
|
|
@Setter
|
|
@Setter
|
|
@Getter
|
|
@Getter
|
|
@NodeEntity(label = "实验室检查套餐名")
|
|
@NodeEntity(label = "实验室检查套餐名")
|
|
-public class LisSet extends BaseNode {
|
|
|
|
|
|
+public class LisSet extends BaseNode {
|
|
|
|
|
|
@Property(name = "单位")
|
|
@Property(name = "单位")
|
|
private String unit;
|
|
private String unit;
|
|
@@ -36,7 +37,9 @@ public class LisSet extends BaseNode {
|
|
@Relationship(type = "实验室检查套餐名禁忌禁忌人群", direction = Relationship.OUTGOING)
|
|
@Relationship(type = "实验室检查套餐名禁忌禁忌人群", direction = Relationship.OUTGOING)
|
|
private Set<LisSetGroup> lisSetGroups = new HashSet<>();
|
|
private Set<LisSetGroup> lisSetGroups = new HashSet<>();
|
|
|
|
|
|
|
|
+ @Relationship(type = "实验室检查套餐名禁忌服用药品", direction = Relationship.OUTGOING)
|
|
|
|
+ private Set<LisSetOralMedicine> lisSetOralMedicines = new HashSet<>();
|
|
|
|
+
|
|
@Relationship(type = "实验室检查名称相关实验室检查套餐名", direction = Relationship.INCOMING)
|
|
@Relationship(type = "实验室检查名称相关实验室检查套餐名", direction = Relationship.INCOMING)
|
|
private Set<LisNameLisSet> lisnamelisSet = new HashSet<>();
|
|
private Set<LisNameLisSet> lisnamelisSet = new HashSet<>();
|
|
-
|
|
|
|
}
|
|
}
|