LearnTestStudent.java 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. package com.ruoyi.learn.domain;
  2. import org.apache.commons.lang3.builder.ToStringBuilder;
  3. import org.apache.commons.lang3.builder.ToStringStyle;
  4. import com.ruoyi.common.annotation.Excel;
  5. import com.ruoyi.common.core.domain.BaseEntity;
  6. /**
  7. * 测试学生对象 learn_test_student
  8. *
  9. * @author ruoyi
  10. * @date 2025-09-18
  11. */
  12. public class LearnTestStudent extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** 批次学生id */
  16. private String id;
  17. /** 批次id */
  18. @Excel(name = "批次id")
  19. private Integer batchId;
  20. /** 学生id */
  21. @Excel(name = "学生id")
  22. private Long studentId;
  23. /** 组卷类型 */
  24. @Excel(name = "组卷类型")
  25. private String buildType;
  26. /** 科目ID */
  27. @Excel(name = "科目ID")
  28. private Long subjectId;
  29. /** 定向标识学生可能有多个 */
  30. @Excel(name = "定向标识学生可能有多个")
  31. private String directKey;
  32. /** 批次卷id */
  33. @Excel(name = "批次卷id")
  34. private Long paperId;
  35. /** 学生班级 */
  36. @Excel(name = "学生班级")
  37. private Long classId;
  38. /** 考卷ID */
  39. @Excel(name = "考卷ID")
  40. private Long examineeId;
  41. /** 状态 */
  42. @Excel(name = "状态")
  43. private Integer status;
  44. private Integer count;
  45. public void setId(String id)
  46. {
  47. this.id = id;
  48. }
  49. public String getId()
  50. {
  51. return id;
  52. }
  53. public void setBatchId(Integer batchId)
  54. {
  55. this.batchId = batchId;
  56. }
  57. public Integer getBatchId()
  58. {
  59. return batchId;
  60. }
  61. public void setStudentId(Long studentId)
  62. {
  63. this.studentId = studentId;
  64. }
  65. public Long getStudentId()
  66. {
  67. return studentId;
  68. }
  69. public String getBuildType() {
  70. return buildType;
  71. }
  72. public void setBuildType(String buildType) {
  73. this.buildType = buildType;
  74. }
  75. public Long getSubjectId() {
  76. return subjectId;
  77. }
  78. public void setSubjectId(Long subjectId) {
  79. this.subjectId = subjectId;
  80. }
  81. public void setDirectKey(String directKey)
  82. {
  83. this.directKey = directKey;
  84. }
  85. public String getDirectKey()
  86. {
  87. return directKey;
  88. }
  89. public void setPaperId(Long paperId)
  90. {
  91. this.paperId = paperId;
  92. }
  93. public Long getPaperId()
  94. {
  95. return paperId;
  96. }
  97. public void setClassId(Long classId)
  98. {
  99. this.classId = classId;
  100. }
  101. public Long getClassId()
  102. {
  103. return classId;
  104. }
  105. public void setExamineeId(Long examineeId)
  106. {
  107. this.examineeId = examineeId;
  108. }
  109. public Long getExamineeId()
  110. {
  111. return examineeId;
  112. }
  113. public void setStatus(Integer status)
  114. {
  115. this.status = status;
  116. }
  117. public Integer getStatus()
  118. {
  119. return status;
  120. }
  121. public Integer getCount() {
  122. return count;
  123. }
  124. public void setCount(Integer count) {
  125. this.count = count;
  126. }
  127. @Override
  128. public String toString() {
  129. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  130. .append("id", getId())
  131. .append("batchId", getBatchId())
  132. .append("studentId", getStudentId())
  133. .append("directKey", getDirectKey())
  134. .append("paperId", getPaperId())
  135. .append("classId", getClassId())
  136. .append("examineeId", getExamineeId())
  137. .append("status", getStatus())
  138. .append("createTime", getCreateTime())
  139. .toString();
  140. }
  141. }