package com.moral.entity; import javax.persistence.Id; import lombok.Data; @Data public class OrganizationRelation { @Id private Integer id; private Integer parentId; private Integer childId; }