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;
|
}
|
}
|