郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package com.gkhy.safePlatform.account.rpc.apimodel.model.resp;
 
import java.io.Serializable;
import java.util.List;
 
public class DepRPCRespDTO implements Serializable {
 
    private static final long serialVersionUID = -7301681475055521523L;
 
    private Long depId;
 
    private String depName;
 
    private String depInfo;
 
    private String depCode;
 
    private Byte depLevel;
 
    private String depLevelDesc;
 
    private Byte status;
 
    private String statusDesc;
 
    private Long parentDepId;
 
    private List<DepRPCRespDTO> children;
 
    public Long getDepId() {
        return depId;
    }
 
    public void setDepId(Long depId) {
        this.depId = depId;
    }
 
    public String getDepName() {
        return depName;
    }
 
    public void setDepName(String depName) {
        this.depName = depName;
    }
 
    public String getDepInfo() {
        return depInfo;
    }
 
    public void setDepInfo(String depInfo) {
        this.depInfo = depInfo;
    }
 
 
    public Byte getStatus() {
        return status;
    }
 
    public void setStatus(Byte status) {
        this.status = status;
    }
 
    public String getStatusDesc() {
        return statusDesc;
    }
 
    public void setStatusDesc(String statusDesc) {
        this.statusDesc = statusDesc;
    }
 
    public Long getParentDepId() {
        return parentDepId;
    }
 
    public void setParentDepId(Long parentDepId) {
        this.parentDepId = parentDepId;
    }
 
    public List<DepRPCRespDTO> getChildren() {
        return children;
    }
 
    public void setChildren(List<DepRPCRespDTO> children) {
        this.children = children;
    }
 
    public Byte getDepLevel() {
        return depLevel;
    }
 
    public void setDepLevel(Byte depLevel) {
        this.depLevel = depLevel;
    }
 
    public String getDepLevelDesc() {
        return depLevelDesc;
    }
 
    public void setDepLevelDesc(String depLevelDesc) {
        this.depLevelDesc = depLevelDesc;
    }
 
    public String getDepCode() {
        return depCode;
    }
 
    public void setDepCode(String depCode) {
        this.depCode = depCode;
    }
}