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 Byte deptLevel; // 父部门id private Long parentDepId; private List 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 Byte getDeptLevel() { return deptLevel; } public void setDeptLevel(Byte deptLevel) { this.deptLevel = deptLevel; } public List getDetail() { return detail; } public void setDetail(List detail) { this.detail = detail; } public Long getParentDepId() { return parentDepId; } public void setParentDepId(Long parentDepId) { this.parentDepId = parentDepId; } }