InvestigateTable.java 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. package com.ruoyi.system.domain;
  2. import java.util.Arrays;
  3. import java.util.Date;
  4. import java.util.List;
  5. import com.fasterxml.jackson.annotation.JsonFormat;
  6. import org.apache.commons.lang3.builder.ToStringBuilder;
  7. import org.apache.commons.lang3.builder.ToStringStyle;
  8. import com.ruoyi.common.annotation.Excel;
  9. import com.ruoyi.common.core.domain.BaseEntity;
  10. /**
  11. * 考察主对象 investigate_table
  12. *
  13. * @author ruoyi
  14. * @date 2023-10-10
  15. */
  16. public class InvestigateTable extends BaseEntity
  17. {
  18. private static final long serialVersionUID = 1L;
  19. /** id */
  20. private Long investigateTableId;
  21. /**
  22. * 只在查询时候使用
  23. */
  24. private String investigateTableIds;
  25. /** 考察名称 */
  26. @Excel(name = "考察名称")
  27. private String investigateName;
  28. /** 考察内容 */
  29. @Excel(name = "考察内容")
  30. private String content;
  31. /** 考察截止日期 */
  32. @JsonFormat(pattern = "yyyy-MM-dd")
  33. @Excel(name = "考察截止日期", width = 30, dateFormat = "yyyy-MM-dd")
  34. private Date endTime;
  35. /** 考察开始日期 */
  36. @JsonFormat(pattern = "yyyy-MM-dd")
  37. @Excel(name = "考察开始日期", width = 30, dateFormat = "yyyy-MM-dd")
  38. private Date beginTime;
  39. /** 访问密码 */
  40. @Excel(name = "访问密码")
  41. private String cipher;
  42. /**
  43. * 考察人员集合
  44. */
  45. private List<InvestigateUser> investigateUserList;
  46. /**
  47. * 考察标题和内容关联集合
  48. */
  49. private List<InvestigateDispositionTable> investigateDispositionTableList;
  50. /** 考察配置组考察点id集合 */
  51. private String investigateDispositionIds;
  52. /** 考察配置组接待指南 */
  53. private String investigateDispositionIdsJieDai;
  54. public String getInvestigateTableIds() {
  55. return investigateTableIds;
  56. }
  57. public void setInvestigateTableIds(String investigateTableIds) {
  58. this.investigateTableIds = investigateTableIds;
  59. }
  60. public String getInvestigateDispositionIdsJieDai() {
  61. return investigateDispositionIdsJieDai;
  62. }
  63. public void setInvestigateDispositionIdsJieDai(String investigateDispositionIdsJieDai) {
  64. this.investigateDispositionIdsJieDai = investigateDispositionIdsJieDai;
  65. }
  66. public Date getBeginTime() {
  67. return beginTime;
  68. }
  69. public void setBeginTime(Date beginTime) {
  70. this.beginTime = beginTime;
  71. }
  72. public List<InvestigateDispositionTable> getInvestigateDispositionTableList() {
  73. return investigateDispositionTableList;
  74. }
  75. public void setInvestigateDispositionTableList(List<InvestigateDispositionTable> investigateDispositionTableList) {
  76. this.investigateDispositionTableList = investigateDispositionTableList;
  77. }
  78. public List<InvestigateUser> getInvestigateUserList() {
  79. return investigateUserList;
  80. }
  81. public void setInvestigateUserList(List<InvestigateUser> investigateUserList) {
  82. this.investigateUserList = investigateUserList;
  83. }
  84. public Long getInvestigateTableId() {
  85. return investigateTableId;
  86. }
  87. public void setInvestigateTableId(Long investigateTableId) {
  88. this.investigateTableId = investigateTableId;
  89. }
  90. public void setInvestigateName(String investigateName)
  91. {
  92. this.investigateName = investigateName;
  93. }
  94. public String getInvestigateName()
  95. {
  96. return investigateName;
  97. }
  98. public void setContent(String content)
  99. {
  100. this.content = content;
  101. }
  102. public String getContent()
  103. {
  104. return content;
  105. }
  106. public void setEndTime(Date endTime)
  107. {
  108. this.endTime = endTime;
  109. }
  110. public Date getEndTime()
  111. {
  112. return endTime;
  113. }
  114. public void setCipher(String cipher)
  115. {
  116. this.cipher = cipher;
  117. }
  118. public String getCipher()
  119. {
  120. return cipher;
  121. }
  122. public String getInvestigateDispositionIds() {
  123. return investigateDispositionIds;
  124. }
  125. public void setInvestigateDispositionIds(String investigateDispositionIds) {
  126. this.investigateDispositionIds = investigateDispositionIds;
  127. }
  128. @Override
  129. public String toString() {
  130. return "InvestigateTable{" +
  131. "investigateTableId=" + investigateTableId +
  132. ", investigateName='" + investigateName + '\'' +
  133. ", content='" + content + '\'' +
  134. ", endTime=" + endTime +
  135. ", beginTime=" + beginTime +
  136. ", cipher='" + cipher + '\'' +
  137. ", investigateUserList=" + investigateUserList +
  138. ", investigateDispositionTableList=" + investigateDispositionTableList +
  139. ", investigateDispositionIds='" + investigateDispositionIds + '\'' +
  140. ", investigateDispositionIdsJieDai='" + investigateDispositionIdsJieDai + '\'' +
  141. '}';
  142. }
  143. }