songhuangfeng123
2022-09-07 471e7d6d238e22308e0457aa03c8f8ff62cd6340
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.emergency.rpc.api.model.dto.resp;
 
 
import java.util.List;
import java.util.Map;
 
public class EmergencyExecuteNumRPCResp {
 
    // 部门id
    private Long deptId;
 
    // 部门名称
    private String deptName;
 
    // 部门级别
    private Integer deptLevel;
 
    // 父部门id
    private Long parentDepId;
 
    private List<EmergencyExecuteNumDetailRPCResp> detail;
 
    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<EmergencyExecuteNumDetailRPCResp> getDetail() {
        return detail;
    }
 
    public void setDetail(List<EmergencyExecuteNumDetailRPCResp> detail) {
        this.detail = detail;
    }
 
    public Long getParentDepId() {
        return parentDepId;
    }
 
    public void setParentDepId(Long parentDepId) {
        this.parentDepId = parentDepId;
    }
}