package com.gkhy.safePlatform.emergency.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.util.Date;
|
|
@TableName("emergency_plan_team")
|
public class EmergencyPlanTeamInfoDO {
|
|
@TableId(type = IdType.AUTO)
|
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 +
|
'}';
|
}
|
}
|