34 lines
617 B
Java
34 lines
617 B
Java
package com.idata.tools.ngbatisdemo.pojo;
|
|
|
|
import lombok.Data;
|
|
import org.nebula.contrib.ngbatis.annotations.DstId;
|
|
import org.nebula.contrib.ngbatis.annotations.SrcId;
|
|
import org.nebula.contrib.ngbatis.annotations.base.EdgeType;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Id;
|
|
|
|
/**
|
|
* @description:
|
|
* @author: ChenYawei
|
|
* @date: 2025/3/17 15:32
|
|
*/
|
|
|
|
@Data
|
|
@EdgeType(name = "user_follow_user")
|
|
public class UserFollowUser {
|
|
|
|
@Id
|
|
private Long rank;
|
|
|
|
@SrcId
|
|
private String srcId;
|
|
|
|
@DstId
|
|
private String dstId;
|
|
|
|
@Column(name = "extra_prop")
|
|
private String extraProp;
|
|
|
|
}
|