package com.gkhy.safePlatform.emergency.model.dto.req;
|
|
|
public class EmergencyPlanTeamReqDTO {
|
|
private Long id;
|
|
private Long planId;
|
|
private Long teamId;
|
|
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 getTeamId() {
|
return teamId;
|
}
|
|
public void setTeamId(Long teamId) {
|
this.teamId = teamId;
|
}
|
|
@Override
|
public String toString() {
|
return "EmergencyPlanAreaInfo{" +
|
"id=" + id +
|
", planId=" + planId +
|
", teamId=" + teamId +
|
'}';
|
}
|
}
|