package com.gkhy.safePlatform.emergency.rpc.api.model.dto.resp;
|
|
|
public class EmergencyExecuteTimeRPCResp {
|
|
// 部门id
|
private Long deptId;
|
|
// 部门名称
|
private String deptName;
|
|
// 部门级别
|
private Byte deptLevel;
|
|
// 父部门id
|
private Long parentDepId;
|
|
//上次演练的时间
|
private String lastTime;
|
|
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 String getLastTime() {
|
return lastTime;
|
}
|
|
public void setLastTime(String lastTime) {
|
this.lastTime = lastTime;
|
}
|
|
public Long getParentDepId() {
|
return parentDepId;
|
}
|
|
public void setParentDepId(Long parentDepId) {
|
this.parentDepId = parentDepId;
|
}
|
}
|