TProjectInformation.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. package com.ruoyi.invest.domain;
  2. import com.ruoyi.tool.domain.TUnifyFile;
  3. import org.apache.commons.lang3.builder.ToStringBuilder;
  4. import org.apache.commons.lang3.builder.ToStringStyle;
  5. import com.ruoyi.common.annotation.Excel;
  6. import com.ruoyi.common.core.domain.BaseEntity;
  7. import java.util.List;
  8. /**
  9. * 文件资料对象 t_project_information
  10. *
  11. * @author ruoyi
  12. * @date 2024-02-23
  13. */
  14. public class TProjectInformation extends BaseEntity
  15. {
  16. private static final long serialVersionUID = 1L;
  17. /** 主键ID */
  18. private String id;
  19. /** 文件名称 */
  20. @Excel(name = "文件名称")
  21. private String fileName;
  22. /** 文件类别 */
  23. @Excel(name = "文件类别")
  24. private String fileType;
  25. /** 项目ID */
  26. private String projectPoolId;
  27. /** 项目阶段 */
  28. @Excel(name = "项目阶段")
  29. private String projectStage;
  30. /** 会议编号 */
  31. @Excel(name = "会议编号")
  32. private String meetingCode;
  33. /** 附件业务ID */
  34. private String fileBusinessId;
  35. /** 状态 */
  36. private String delFlag;
  37. /**
  38. * 附件信息
  39. */
  40. private List<TUnifyFile> listFile;
  41. /**
  42. * 项目池
  43. */
  44. private TProjectPool tProjectPool;
  45. public void setId(String id)
  46. {
  47. this.id = id;
  48. }
  49. public String getId()
  50. {
  51. return id;
  52. }
  53. public void setFileName(String fileName)
  54. {
  55. this.fileName = fileName;
  56. }
  57. public String getFileName()
  58. {
  59. return fileName;
  60. }
  61. public void setFileType(String fileType)
  62. {
  63. this.fileType = fileType;
  64. }
  65. public String getFileType()
  66. {
  67. return fileType;
  68. }
  69. public void setProjectPoolId(String projectPoolId)
  70. {
  71. this.projectPoolId = projectPoolId;
  72. }
  73. public String getProjectPoolId()
  74. {
  75. return projectPoolId;
  76. }
  77. public void setProjectStage(String projectStage)
  78. {
  79. this.projectStage = projectStage;
  80. }
  81. public String getProjectStage()
  82. {
  83. return projectStage;
  84. }
  85. public void setMeetingCode(String meetingCode)
  86. {
  87. this.meetingCode = meetingCode;
  88. }
  89. public String getMeetingCode()
  90. {
  91. return meetingCode;
  92. }
  93. public void setFileBusinessId(String fileBusinessId)
  94. {
  95. this.fileBusinessId = fileBusinessId;
  96. }
  97. public String getFileBusinessId()
  98. {
  99. return fileBusinessId;
  100. }
  101. public void setDelFlag(String delFlag)
  102. {
  103. this.delFlag = delFlag;
  104. }
  105. public String getDelFlag()
  106. {
  107. return delFlag;
  108. }
  109. public List<TUnifyFile> getListFile() {
  110. return listFile;
  111. }
  112. public TProjectPool gettProjectPool() {
  113. return tProjectPool;
  114. }
  115. public void settProjectPool(TProjectPool tProjectPool) {
  116. this.tProjectPool = tProjectPool;
  117. }
  118. public void setListFile(List<TUnifyFile> listFile) {
  119. this.listFile = listFile;
  120. }
  121. @Override
  122. public String toString() {
  123. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  124. .append("id", getId())
  125. .append("fileName", getFileName())
  126. .append("fileType", getFileType())
  127. .append("projectPoolId", getProjectPoolId())
  128. .append("projectStage", getProjectStage())
  129. .append("meetingCode", getMeetingCode())
  130. .append("fileBusinessId", getFileBusinessId())
  131. .append("delFlag", getDelFlag())
  132. .append("remark", getRemark())
  133. .append("createBy", getCreateBy())
  134. .append("createTime", getCreateTime())
  135. .append("updateBy", getUpdateBy())
  136. .append("updateTime", getUpdateTime())
  137. .toString();
  138. }
  139. }