1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| package com.ruoyi.domain.dto;
|
| import lombok.Data;
|
| @Data
| public class AncestorHelper {
|
| private String name;
| private String fname;
| private Integer id;
| /**
| * 家族id
| */
| private Integer clanId;
|
|
|
| /**
| * 祖先sysId
| */
| private Long sysId;
|
|
| private Long fsysId;
| /**
| * 祖先性别
| */
| private Integer sex;
|
| private Integer fsex;
| /**
| * 祖先类型
| */
| private Integer roleId;
| }
|
|