LearnPaperReal.java 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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_paper_real
  8. *
  9. * @author ruoyi
  10. * @date 2025-09-18
  11. */
  12. public class LearnPaperReal extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** $column.columnComment */
  16. private Long id;
  17. /** 科目ID */
  18. @Excel(name = "科目ID")
  19. private Long subjectId;
  20. /** 试卷名称 */
  21. @Excel(name = "试卷名称")
  22. private String paperName;
  23. /** 试卷年份 */
  24. @Excel(name = "试卷年份")
  25. private Long year;
  26. /** 历年真题,模拟卷,必刷题 */
  27. @Excel(name = "历年真题,模拟卷,必刷题")
  28. private String paperType;
  29. /** 试卷题数 */
  30. @Excel(name = "试卷题数")
  31. private String number;
  32. /** 试卷总分 */
  33. @Excel(name = "试卷总分")
  34. private Long fenshu;
  35. /** 0 默认 1 精品试卷 */
  36. @Excel(name = "0 默认 1 精品试卷")
  37. private Long paperSource;
  38. /** 是否有在线卷 */
  39. @Excel(name = "是否有在线卷")
  40. private Long online;
  41. /** 唯一标识 */
  42. @Excel(name = "唯一标识")
  43. private String tiid;
  44. /** 下载路径 */
  45. @Excel(name = "下载路径")
  46. private String osspath;
  47. /** 原始文件名 */
  48. @Excel(name = "原始文件名")
  49. private String filename;
  50. /** 适用地区 */
  51. @Excel(name = "适用地区")
  52. private String locations;
  53. /** 适用考生 */
  54. @Excel(name = "适用考生")
  55. private String examineeType;
  56. public void setId(Long id)
  57. {
  58. this.id = id;
  59. }
  60. public Long getId()
  61. {
  62. return id;
  63. }
  64. public void setSubjectId(Long subjectId)
  65. {
  66. this.subjectId = subjectId;
  67. }
  68. public Long getSubjectId()
  69. {
  70. return subjectId;
  71. }
  72. public void setPaperName(String paperName)
  73. {
  74. this.paperName = paperName;
  75. }
  76. public String getPaperName()
  77. {
  78. return paperName;
  79. }
  80. public void setYear(Long year)
  81. {
  82. this.year = year;
  83. }
  84. public Long getYear()
  85. {
  86. return year;
  87. }
  88. public void setPaperType(String paperType)
  89. {
  90. this.paperType = paperType;
  91. }
  92. public String getPaperType()
  93. {
  94. return paperType;
  95. }
  96. public void setNumber(String number)
  97. {
  98. this.number = number;
  99. }
  100. public String getNumber()
  101. {
  102. return number;
  103. }
  104. public void setFenshu(Long fenshu)
  105. {
  106. this.fenshu = fenshu;
  107. }
  108. public Long getFenshu()
  109. {
  110. return fenshu;
  111. }
  112. public void setPaperSource(Long paperSource)
  113. {
  114. this.paperSource = paperSource;
  115. }
  116. public Long getPaperSource()
  117. {
  118. return paperSource;
  119. }
  120. public void setOnline(Long online)
  121. {
  122. this.online = online;
  123. }
  124. public Long getOnline()
  125. {
  126. return online;
  127. }
  128. public void setTiid(String tiid)
  129. {
  130. this.tiid = tiid;
  131. }
  132. public String getTiid()
  133. {
  134. return tiid;
  135. }
  136. public void setOsspath(String osspath)
  137. {
  138. this.osspath = osspath;
  139. }
  140. public String getOsspath()
  141. {
  142. return osspath;
  143. }
  144. public void setFilename(String filename)
  145. {
  146. this.filename = filename;
  147. }
  148. public String getFilename()
  149. {
  150. return filename;
  151. }
  152. public void setLocations(String locations)
  153. {
  154. this.locations = locations;
  155. }
  156. public String getLocations()
  157. {
  158. return locations;
  159. }
  160. public void setExamineeType(String examineeType)
  161. {
  162. this.examineeType = examineeType;
  163. }
  164. public String getExamineeType()
  165. {
  166. return examineeType;
  167. }
  168. @Override
  169. public String toString() {
  170. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  171. .append("id", getId())
  172. .append("subjectId", getSubjectId())
  173. .append("paperName", getPaperName())
  174. .append("year", getYear())
  175. .append("paperType", getPaperType())
  176. .append("number", getNumber())
  177. .append("fenshu", getFenshu())
  178. .append("paperSource", getPaperSource())
  179. .append("online", getOnline())
  180. .append("tiid", getTiid())
  181. .append("osspath", getOsspath())
  182. .append("filename", getFilename())
  183. .append("locations", getLocations())
  184. .append("examineeType", getExamineeType())
  185. .append("createTime", getCreateTime())
  186. .toString();
  187. }
  188. }