package com.gkhy.safePlatform.incidentManage.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.util.Date;
|
|
@TableName("accident_express_file")
|
public class AccidentExpressFileInfoDO{
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
private Long accidentExpressId;
|
|
private String fileUrl;
|
|
private String fileName;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getAccidentExpressId() {
|
return accidentExpressId;
|
}
|
|
public void setAccidentExpressId(Long accidentExpressId) {
|
this.accidentExpressId = accidentExpressId;
|
}
|
|
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 "AccidentExpressFileInfo{" +
|
"id=" + id +
|
", accidentExpressId=" + accidentExpressId +
|
", fileUrl='" + fileUrl + '\'' +
|
", fileName='" + fileName + '\'' +
|
'}';
|
}
|
}
|