TProjectInvestigate.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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_investigate
  10. *
  11. * @author zjc
  12. * @date 2024-03-13
  13. */
  14. public class TProjectInvestigate extends BaseEntity
  15. {
  16. private static final long serialVersionUID = 1L;
  17. /** $column.columnComment */
  18. private String id;
  19. /** 尽调名称 */
  20. @Excel(name = "尽调名称")
  21. private String investigateName;
  22. /** 尽调编号 */
  23. @Excel(name = "尽调编号")
  24. private String investigateCode;
  25. /** 项目id */
  26. @Excel(name = "项目id")
  27. private String projectPoolId;
  28. /** 尽调人员 */
  29. @Excel(name = "尽调人员")
  30. private String investigatePerson;
  31. /** $column.columnComment */
  32. private String investigatePersonId;
  33. /** 尽调费用(元) */
  34. @Excel(name = "尽调费用", readConverterExp = "元=")
  35. private String investigateCost;
  36. /** 描述 */
  37. @Excel(name = "描述")
  38. private String describe;
  39. /** 删除状态 */
  40. private String delFlag;
  41. /**
  42. * 附件信息
  43. */
  44. private List<TUnifyFile> listFile;
  45. public void setId(String id)
  46. {
  47. this.id = id;
  48. }
  49. public String getId()
  50. {
  51. return id;
  52. }
  53. public void setInvestigateName(String investigateName)
  54. {
  55. this.investigateName = investigateName;
  56. }
  57. public String getInvestigateName()
  58. {
  59. return investigateName;
  60. }
  61. public void setInvestigateCode(String investigateCode)
  62. {
  63. this.investigateCode = investigateCode;
  64. }
  65. public String getInvestigateCode()
  66. {
  67. return investigateCode;
  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 setInvestigatePerson(String investigatePerson)
  78. {
  79. this.investigatePerson = investigatePerson;
  80. }
  81. public String getInvestigatePerson()
  82. {
  83. return investigatePerson;
  84. }
  85. public void setInvestigatePersonId(String investigatePersonId)
  86. {
  87. this.investigatePersonId = investigatePersonId;
  88. }
  89. public String getInvestigatePersonId()
  90. {
  91. return investigatePersonId;
  92. }
  93. public void setInvestigateCost(String investigateCost)
  94. {
  95. this.investigateCost = investigateCost;
  96. }
  97. public String getInvestigateCost()
  98. {
  99. return investigateCost;
  100. }
  101. public void setDescribe(String describe)
  102. {
  103. this.describe = describe;
  104. }
  105. public String getDescribe()
  106. {
  107. return describe;
  108. }
  109. public void setDelFlag(String delFlag)
  110. {
  111. this.delFlag = delFlag;
  112. }
  113. public String getDelFlag()
  114. {
  115. return delFlag;
  116. }
  117. public List<TUnifyFile> getListFile() {
  118. return listFile;
  119. }
  120. public void setListFile(List<TUnifyFile> listFile) {
  121. this.listFile = listFile;
  122. }
  123. @Override
  124. public String toString() {
  125. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  126. .append("id", getId())
  127. .append("investigateName", getInvestigateName())
  128. .append("investigateCode", getInvestigateCode())
  129. .append("projectPoolId", getProjectPoolId())
  130. .append("investigatePerson", getInvestigatePerson())
  131. .append("investigatePersonId", getInvestigatePersonId())
  132. .append("investigateCost", getInvestigateCost())
  133. .append("describe", getDescribe())
  134. .append("remark", getRemark())
  135. .append("delFlag", getDelFlag())
  136. .append("createBy", getCreateBy())
  137. .append("createTime", getCreateTime())
  138. .append("updateBy", getUpdateBy())
  139. .append("updateTime", getUpdateTime())
  140. .toString();
  141. }
  142. }