xufenglei
2017-12-07 dba72443e05e7b0a52ee85bfd9f4641aebc42c60
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.moral.entity;
 
import lombok.Data;
 
@Data
public class OrganizationRelation {
    private Integer id;
 
    private Integer parentId;
 
    private Integer childId;
 
}