package com.gkhy.safePlatform.emergency.model.dto.resp;
|
|
|
public class EmergencyPlanDepartmentRespDTO {
|
|
private Long id;
|
|
private Long planId;
|
|
private Long departmentId;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getPlanId() {
|
return planId;
|
}
|
|
public void setPlanId(Long planId) {
|
this.planId = planId;
|
}
|
|
public Long getDepartmentId() {
|
return departmentId;
|
}
|
|
public void setDepartmentId(Long areaId) {
|
this.departmentId = areaId;
|
}
|
|
@Override
|
public String toString() {
|
return "EmergencyPlanAreaRespDTO{" +
|
"id=" + id +
|
", planId=" + planId +
|
", departmentId=" + departmentId +
|
'}';
|
}
|
}
|