TProjectInformation.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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. @Excel(name = "项目名称")
  27. private String projectPoolId;
  28. /** 项目阶段 */
  29. @Excel(name = "项目阶段")
  30. private String projectStage;
  31. /** 会议编号 */
  32. // @Excel(name = "会议编号")
  33. private String meetingCode;
  34. /** 附件业务ID */
  35. private String fileBusinessId;
  36. /** 状态 */
  37. private String delFlag;
  38. /**
  39. * 附件信息
  40. */
  41. private List<TUnifyFile> listFile;
  42. /**
  43. * 项目池
  44. */
  45. private TProjectPool tProjectPool;
  46. public void setId(String id)
  47. {
  48. this.id = id;
  49. }
  50. public String getId()
  51. {
  52. return id;
  53. }
  54. public void setFileName(String fileName)
  55. {
  56. this.fileName = fileName;
  57. }
  58. public String getFileName()
  59. {
  60. return fileName;
  61. }
  62. public void setFileType(String fileType)
  63. {
  64. this.fileType = fileType;
  65. }
  66. public String getFileType()
  67. {
  68. return fileType;
  69. }
  70. public void setProjectPoolId(String projectPoolId)
  71. {
  72. this.projectPoolId = projectPoolId;
  73. }
  74. public String getProjectPoolId()
  75. {
  76. return projectPoolId;
  77. }
  78. public void setProjectStage(String projectStage)
  79. {
  80. this.projectStage = projectStage;
  81. }
  82. public String getProjectStage()
  83. {
  84. return projectStage;
  85. }
  86. public void setMeetingCode(String meetingCode)
  87. {
  88. this.meetingCode = meetingCode;
  89. }
  90. public String getMeetingCode()
  91. {
  92. return meetingCode;
  93. }
  94. public void setFileBusinessId(String fileBusinessId)
  95. {
  96. this.fileBusinessId = fileBusinessId;
  97. }
  98. public String getFileBusinessId()
  99. {
  100. return fileBusinessId;
  101. }
  102. public void setDelFlag(String delFlag)
  103. {
  104. this.delFlag = delFlag;
  105. }
  106. public String getDelFlag()
  107. {
  108. return delFlag;
  109. }
  110. public List<TUnifyFile> getListFile() {
  111. return listFile;
  112. }
  113. public TProjectPool gettProjectPool() {
  114. return tProjectPool;
  115. }
  116. public void settProjectPool(TProjectPool tProjectPool) {
  117. this.tProjectPool = tProjectPool;
  118. }
  119. public void setListFile(List<TUnifyFile> listFile) {
  120. this.listFile = listFile;
  121. }
  122. @Override
  123. public String toString() {
  124. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  125. .append("id", getId())
  126. .append("fileName", getFileName())
  127. .append("fileType", getFileType())
  128. .append("projectPoolId", getProjectPoolId())
  129. .append("projectStage", getProjectStage())
  130. .append("meetingCode", getMeetingCode())
  131. .append("fileBusinessId", getFileBusinessId())
  132. .append("delFlag", getDelFlag())
  133. .append("remark", getRemark())
  134. .append("createBy", getCreateBy())
  135. .append("createTime", getCreateTime())
  136. .append("updateBy", getUpdateBy())
  137. .append("updateTime", getUpdateTime())
  138. .toString();
  139. }
  140. }