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_department") public class EmergencyPlanDepartmentInfoDO { @TableId(type = IdType.AUTO) 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 departmentId) { this.departmentId = departmentId; } @Override public String toString() { return "EmergencyPlanAreaInfo{" + "id=" + id + ", planId=" + planId + ", departmentId=" + departmentId + '}'; } }