InvestigateTable.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. @Excel(name = "考察名称")
  23. private String investigateName;
  24. /** 考察内容 */
  25. @Excel(name = "考察内容")
  26. private String content;
  27. /** 考察截止日期 */
  28. @JsonFormat(pattern = "yyyy-MM-dd")
  29. @Excel(name = "考察截止日期", width = 30, dateFormat = "yyyy-MM-dd")
  30. private Date endTime;
  31. /** 考察开始日期 */
  32. @JsonFormat(pattern = "yyyy-MM-dd")
  33. @Excel(name = "考察开始日期", width = 30, dateFormat = "yyyy-MM-dd")
  34. private Date beginTime;
  35. /** 访问密码 */
  36. @Excel(name = "访问密码")
  37. private String cipher;
  38. /**
  39. * 考察人员集合
  40. */
  41. private List<InvestigateUser> investigateUserList;
  42. /**
  43. * 考察标题和内容关联集合
  44. */
  45. private List<InvestigateDispositionTable> investigateDispositionTableList;
  46. /** 考察配置组 */
  47. private Long[] investigateDispositionTableIds;
  48. public Date getBeginTime() {
  49. return beginTime;
  50. }
  51. public void setBeginTime(Date beginTime) {
  52. this.beginTime = beginTime;
  53. }
  54. public List<InvestigateDispositionTable> getInvestigateDispositionTableList() {
  55. return investigateDispositionTableList;
  56. }
  57. public void setInvestigateDispositionTableList(List<InvestigateDispositionTable> investigateDispositionTableList) {
  58. this.investigateDispositionTableList = investigateDispositionTableList;
  59. }
  60. public List<InvestigateUser> getInvestigateUserList() {
  61. return investigateUserList;
  62. }
  63. public void setInvestigateUserList(List<InvestigateUser> investigateUserList) {
  64. this.investigateUserList = investigateUserList;
  65. }
  66. public Long[] getInvestigateDispositionTableIds() {
  67. return investigateDispositionTableIds;
  68. }
  69. public void setInvestigateDispositionTableIds(Long[] investigateDispositionTableIds) {
  70. this.investigateDispositionTableIds = investigateDispositionTableIds;
  71. }
  72. public Long getInvestigateTableId() {
  73. return investigateTableId;
  74. }
  75. public void setInvestigateTableId(Long investigateTableId) {
  76. this.investigateTableId = investigateTableId;
  77. }
  78. public void setInvestigateName(String investigateName)
  79. {
  80. this.investigateName = investigateName;
  81. }
  82. public String getInvestigateName()
  83. {
  84. return investigateName;
  85. }
  86. public void setContent(String content)
  87. {
  88. this.content = content;
  89. }
  90. public String getContent()
  91. {
  92. return content;
  93. }
  94. public void setEndTime(Date endTime)
  95. {
  96. this.endTime = endTime;
  97. }
  98. public Date getEndTime()
  99. {
  100. return endTime;
  101. }
  102. public void setCipher(String cipher)
  103. {
  104. this.cipher = cipher;
  105. }
  106. public String getCipher()
  107. {
  108. return cipher;
  109. }
  110. @Override
  111. public String toString() {
  112. return "InvestigateTable{" +
  113. "investigateTableId=" + investigateTableId +
  114. ", investigateName='" + investigateName + '\'' +
  115. ", content='" + content + '\'' +
  116. ", endTime=" + endTime +
  117. ", cipher='" + cipher + '\'' +
  118. ", investigateUserList=" + investigateUserList +
  119. ", investigateDispositionTableList=" + investigateDispositionTableList +
  120. ", investigateDispositionTableIds=" + Arrays.toString(investigateDispositionTableIds) +
  121. '}';
  122. }
  123. }