zhangfeng
2022-10-10 1305d0aa469fe7330fd2f8e9fbb10d95042571be
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
package com.gkhy.safePlatform.incidentManage.rpc.api.model.dto.resp;
 
 
import java.util.List;
 
public class IncidentManageRPCResp {
 
    // 部门id
    private Long deptId;
 
    // 部门名称
    private String deptName;
 
    // 部门级别
    private Byte deptLevel;
 
    // 父部门id
    private Long parentDepId;
 
    // 名称+数据
    private List<IncidentManageCountRPCResp> data;
 
    public Long getDeptId() {
        return deptId;
    }
 
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
 
    public String getDeptName() {
        return deptName;
    }
 
    public void setDeptName(String deptName) {
        this.deptName = deptName;
    }
 
    public Byte getDeptLevel() {
        return deptLevel;
    }
 
    public void setDeptLevel(Byte deptLevel) {
        this.deptLevel = deptLevel;
    }
 
    public Long getParentDepId() {
        return parentDepId;
    }
 
    public void setParentDepId(Long parentDepId) {
        this.parentDepId = parentDepId;
    }
 
    public List<IncidentManageCountRPCResp> getData() {
        return data;
    }
 
    public void setData(List<IncidentManageCountRPCResp> data) {
        this.data = data;
    }
}