LearnCultureKnowledge.java 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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_culture_knowledge
  8. *
  9. * @author ruoyi
  10. * @date 2025-12-02
  11. */
  12. public class LearnCultureKnowledge extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** id */
  16. private Long id;
  17. /** 年度 */
  18. @Excel(name = "年度")
  19. private Integer year;
  20. /** 查询年度 */
  21. @Excel(name = "查询年度")
  22. private Integer matchYear;
  23. /** 院校id */
  24. @Excel(name = "院校id")
  25. private Long universityId;
  26. private String directKey;
  27. /** 专业科目 */
  28. @Excel(name = "专业科目")
  29. private String subjects;
  30. /** 题型分布 */
  31. @Excel(name = "题型分布")
  32. private String questionTypes;
  33. /** 知识点列表 */
  34. @Excel(name = "知识点列表")
  35. private String knowledges;
  36. /** 适用省份 */
  37. @Excel(name = "适用省份")
  38. private String locations;
  39. /** 适用考生类型 */
  40. @Excel(name = "适用考生类型")
  41. private String examineeTypes;
  42. /** 总分 */
  43. @Excel(name = "总分")
  44. private Integer score;
  45. /** 时长 */
  46. @Excel(name = "时长")
  47. private Long time;
  48. /** 仿真模拟卷要求 */
  49. @Excel(name = "仿真模拟卷要求")
  50. private String conditions;
  51. public void setId(Long id)
  52. {
  53. this.id = id;
  54. }
  55. public Long getId()
  56. {
  57. return id;
  58. }
  59. public void setYear(Integer year)
  60. {
  61. this.year = year;
  62. }
  63. public Integer getYear()
  64. {
  65. return year;
  66. }
  67. public Integer getMatchYear() {
  68. return matchYear;
  69. }
  70. public void setMatchYear(Integer matchYear) {
  71. this.matchYear = matchYear;
  72. }
  73. public void setUniversityId(Long universityId)
  74. {
  75. this.universityId = universityId;
  76. }
  77. public Long getUniversityId()
  78. {
  79. return universityId;
  80. }
  81. public String getDirectKey() {
  82. return directKey;
  83. }
  84. public void setDirectKey(String directKey) {
  85. this.directKey = directKey;
  86. }
  87. public void setSubjects(String subjects)
  88. {
  89. this.subjects = subjects;
  90. }
  91. public String getSubjects()
  92. {
  93. return subjects;
  94. }
  95. public void setQuestionTypes(String questionTypes)
  96. {
  97. this.questionTypes = questionTypes;
  98. }
  99. public String getQuestionTypes()
  100. {
  101. return questionTypes;
  102. }
  103. public void setKnowledges(String knowledges)
  104. {
  105. this.knowledges = knowledges;
  106. }
  107. public String getKnowledges()
  108. {
  109. return knowledges;
  110. }
  111. public void setLocations(String locations)
  112. {
  113. this.locations = locations;
  114. }
  115. public String getLocations()
  116. {
  117. return locations;
  118. }
  119. public void setExamineeTypes(String examineeTypes)
  120. {
  121. this.examineeTypes = examineeTypes;
  122. }
  123. public String getExamineeTypes()
  124. {
  125. return examineeTypes;
  126. }
  127. public void setScore(Integer score)
  128. {
  129. this.score = score;
  130. }
  131. public Integer getScore()
  132. {
  133. return score;
  134. }
  135. public void setTime(Long time)
  136. {
  137. this.time = time;
  138. }
  139. public Long getTime()
  140. {
  141. return time;
  142. }
  143. public void setConditions(String conditions)
  144. {
  145. this.conditions = conditions;
  146. }
  147. public String getConditions()
  148. {
  149. return conditions;
  150. }
  151. @Override
  152. public String toString() {
  153. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  154. .append("id", getId())
  155. .append("year", getYear())
  156. .append("universityId", getUniversityId())
  157. .append("subjects", getSubjects())
  158. .append("questionTypes", getQuestionTypes())
  159. .append("knowledges", getKnowledges())
  160. .append("locations", getLocations())
  161. .append("examineeTypes", getExamineeTypes())
  162. .append("score", getScore())
  163. .append("time", getTime())
  164. .append("conditions", getConditions())
  165. .toString();
  166. }
  167. }