| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- package com.ruoyi.invest.domain;
- import com.ruoyi.tool.domain.TUnifyFile;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- import java.util.List;
- /**
- * 文件资料对象 t_project_information
- *
- * @author ruoyi
- * @date 2024-02-23
- */
- public class TProjectInformation extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 主键ID */
- private String id;
- /** 文件名称 */
- @Excel(name = "文件名称")
- private String fileName;
- /** 文件类别 */
- @Excel(name = "文件类别")
- private String fileType;
- /** 项目ID */
- private String projectPoolId;
- /** 项目阶段 */
- @Excel(name = "项目阶段")
- private String projectStage;
- /** 会议编号 */
- @Excel(name = "会议编号")
- private String meetingCode;
- /** 附件业务ID */
- private String fileBusinessId;
- /** 状态 */
- private String delFlag;
- /**
- * 附件信息
- */
- private List<TUnifyFile> listFile;
- /**
- * 项目池
- */
- private TProjectPool tProjectPool;
- public void setId(String id)
- {
- this.id = id;
- }
- public String getId()
- {
- return id;
- }
- public void setFileName(String fileName)
- {
- this.fileName = fileName;
- }
- public String getFileName()
- {
- return fileName;
- }
- public void setFileType(String fileType)
- {
- this.fileType = fileType;
- }
- public String getFileType()
- {
- return fileType;
- }
- public void setProjectPoolId(String projectPoolId)
- {
- this.projectPoolId = projectPoolId;
- }
- public String getProjectPoolId()
- {
- return projectPoolId;
- }
- public void setProjectStage(String projectStage)
- {
- this.projectStage = projectStage;
- }
- public String getProjectStage()
- {
- return projectStage;
- }
- public void setMeetingCode(String meetingCode)
- {
- this.meetingCode = meetingCode;
- }
- public String getMeetingCode()
- {
- return meetingCode;
- }
- public void setFileBusinessId(String fileBusinessId)
- {
- this.fileBusinessId = fileBusinessId;
- }
- public String getFileBusinessId()
- {
- return fileBusinessId;
- }
- public void setDelFlag(String delFlag)
- {
- this.delFlag = delFlag;
- }
- public String getDelFlag()
- {
- return delFlag;
- }
- public List<TUnifyFile> getListFile() {
- return listFile;
- }
- public TProjectPool gettProjectPool() {
- return tProjectPool;
- }
- public void settProjectPool(TProjectPool tProjectPool) {
- this.tProjectPool = tProjectPool;
- }
- public void setListFile(List<TUnifyFile> listFile) {
- this.listFile = listFile;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("fileName", getFileName())
- .append("fileType", getFileType())
- .append("projectPoolId", getProjectPoolId())
- .append("projectStage", getProjectStage())
- .append("meetingCode", getMeetingCode())
- .append("fileBusinessId", getFileBusinessId())
- .append("delFlag", getDelFlag())
- .append("remark", getRemark())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .toString();
- }
- }
|