package com.gkhy.safePlatform.incidentManage.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
@TableName("work_injury_declaration_file")
|
public class WorkInjuryDeclarationFileInfoDO {
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
private Long workInjuryDeclarationId;
|
|
private String fileUrl;
|
|
private String fileName;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getWorkInjuryDeclarationId() {
|
return workInjuryDeclarationId;
|
}
|
|
public void setWorkInjuryDeclarationId(Long workInjuryDeclarationId) {
|
this.workInjuryDeclarationId = workInjuryDeclarationId;
|
}
|
|
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 "WorkInjuryDeclarationFileInfoDO{" +
|
"id=" + id +
|
", workInjuryDeclarationId=" + workInjuryDeclarationId +
|
", fileUrl='" + fileUrl + '\'' +
|
", fileName='" + fileName + '\'' +
|
'}';
|
}
|
}
|