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_file")
|
public class EmergencyPlanFileInfoDO {
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
private Long planId;
|
|
private String fileUrl;
|
|
private String fileName;
|
|
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 String getFileUrl() {
|
return fileUrl;
|
}
|
|
public void setFileUrl(String fileUrl) {
|
this.fileUrl = fileUrl;
|
}
|
|
public String getFileName() {
|
return fileName;
|
}
|
|
public void setFileName(String fileName) {
|
this.fileName = fileName;
|
}
|
|
@Override
|
public String toString() {
|
return "EmergencyTeamFileInfo{" +
|
"id=" + id +
|
", planId=" + planId +
|
", fileUrl='" + fileUrl + '\'' +
|
", fileName='" + fileName + '\'' +
|
'}';
|
}
|
}
|