我看网上资料的写法是
@RelationshipEntity(type = "relationShip")
@Data
@Builder
public class RelationShip {
@Id
@GeneratedValue
private Long id;
@StartNode
private Dept parent;
@EndNode
private Dept child;
但是这个@RelationshipEntity现在已经不存在了,我导入的是spring-boot-starter-data-neo4j:2.5.5(默认版本)。那么新版本的整合包要怎么表示关系节点呢