zhongrj
2023-10-31 811bec0382e7202aafdca01d2f64bd8456905fd8
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package org.springblade.modules.doorplateAddress.vo;
 
import lombok.Data;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
 
@Data
public class FuncNode implements Serializable {
 
    /**
     * 单元编号
     */
    private String unitCode;
 
    /**
     * 单元名称
     */
    private String unitName;
 
    /**
     * 楼层
     */
    private String floor;
 
    /**
     * 房间号
     */
    private String houseNo;
 
    /**
     * 门牌地址编码
     */
    private String addressCode;
 
    /**
     * 姓名
     */
    private String realName;
 
    /**
     * 角色
     */
    private String roleType;
 
    /**
     * 居住状态
     */
    private String residentialStatus;
 
    /**
     * 子孙节点
     */
    private List<FuncNode> children = new ArrayList<>();
 
}