songhuangfeng123
2022-09-05 90a86453a5266a88c8cbdbbddc888070ccb8df29
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
package com.gkhy.safePlatform.incidentManage.rpc.api.model.dto.resp;
 
 
import java.util.List;
import java.util.Map;
 
public class IncidentManageRPCResp {
 
    // 部门id
    private Long deptId;
 
    // 部门名称
    private String deptName;
 
    // 部门级别
    private Integer deptLevel;
 
    // 名称+数据
    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 Integer getDeptLevel() {
        return deptLevel;
    }
 
    public void setDeptLevel(Integer deptLevel) {
        this.deptLevel = deptLevel;
    }
 
    public List<IncidentManageCountRPCResp> getData() {
        return data;
    }
 
    public void setData(List<IncidentManageCountRPCResp> data) {
        this.data = data;
    }
}