src/main/java/com/moral/entity/OrganizationRelation.java
@@ -1,5 +1,8 @@ package com.moral.entity; import lombok.Data; @Data public class OrganizationRelation { private Integer id; @@ -7,27 +10,4 @@ private Integer childId; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getParentId() { return parentId; } public void setParentId(Integer parentId) { this.parentId = parentId; } public Integer getChildId() { return childId; } public void setChildId(Integer childId) { this.childId = childId; } }