AMarjorPlan.java 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  1. package com.ruoyi.ie.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. * 专业计划要求对象 a_marjor_plan
  8. *
  9. * @author voluntary
  10. * @date 2023-11-26
  11. */
  12. public class AMarjorPlan extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** $column.columnComment */
  16. private Long id;
  17. /** 年度 */
  18. @Excel(name = "年度")
  19. private Integer year;
  20. /** 院校id */
  21. @Excel(name = "院校id")
  22. private Long universityId;
  23. /** 院校 */
  24. @Excel(name = "院校")
  25. private String universityName;
  26. private String level;
  27. /** 专业组 */
  28. @Excel(name = "专业组")
  29. private String majorGroup;
  30. /** 专业 */
  31. @Excel(name = "专业代码")
  32. private String majorCode;
  33. /** 专业 */
  34. @Excel(name = "专业")
  35. private String majorName;
  36. /** 专业方向 */
  37. @Excel(name = "专业方向")
  38. private String majorDirection;
  39. /** 招生代码 */
  40. @Excel(name = "院校招生代码")
  41. private String enrollCode;
  42. /** 招生代码 */
  43. @Excel(name = "专业招生代码")
  44. private String majorEnrollCode;
  45. /** 考生类型 */
  46. @Excel(name = "考生类型")
  47. private String examineeType;
  48. /** 计划人数 */
  49. @Excel(name = "计划人数")
  50. private Integer planTotal;
  51. private Integer xuefei;
  52. /** 学制 */
  53. @Excel(name = "学制")
  54. private Integer lengthOfSchooling;
  55. /** 综合分 */
  56. @Excel(name = "综合分")
  57. private Double score;
  58. /** 文化 */
  59. @Excel(name = "文化")
  60. private Double culturalScore;
  61. /** 专业技能 */
  62. @Excel(name = "专业技能")
  63. private Double profScore;
  64. /** 校考 */
  65. @Excel(name = "校考")
  66. private Double schoolScore;
  67. /** 语 */
  68. @Excel(name = "语")
  69. private Double chinessScore;
  70. /** 数 */
  71. @Excel(name = "数")
  72. private Double mathScore;
  73. /** 英 */
  74. @Excel(name = "英")
  75. private Double englishScore;
  76. /** 自定义: 支持所有分英的算式函数 */
  77. @Excel(name = "自定义: 支持所有分英的算式函数")
  78. private String custCond;
  79. /** 备注 */
  80. @Excel(name = "备注")
  81. private String comment;
  82. /** 合适企业 */
  83. @Excel(name = "合适企业")
  84. private String company;
  85. /** 临时 */
  86. private String test;
  87. private String enrollFormula;
  88. public Integer getXuefei() {
  89. return xuefei;
  90. }
  91. public void setXuefei(Integer xuefei) {
  92. this.xuefei = xuefei;
  93. }
  94. public void setId(Long id)
  95. {
  96. this.id = id;
  97. }
  98. public Long getId()
  99. {
  100. return id;
  101. }
  102. public void setYear(Integer year)
  103. {
  104. this.year = year;
  105. }
  106. public Integer getYear()
  107. {
  108. return year;
  109. }
  110. public void setUniversityId(Long universityId)
  111. {
  112. this.universityId = universityId;
  113. }
  114. public Long getUniversityId()
  115. {
  116. return universityId;
  117. }
  118. public void setUniversityName(String universityName)
  119. {
  120. this.universityName = universityName;
  121. }
  122. public String getUniversityName()
  123. {
  124. return universityName;
  125. }
  126. public void setLevel(String level) {
  127. this.level = level;
  128. }
  129. public String getLevel() {
  130. return level;
  131. }
  132. public void setMajorGroup(String majorGroup)
  133. {
  134. this.majorGroup = majorGroup;
  135. }
  136. public String getMajorGroup()
  137. {
  138. return majorGroup;
  139. }
  140. public void setMajorCode(String majorCode) {
  141. this.majorCode = majorCode;
  142. }
  143. public String getMajorCode() {
  144. return majorCode;
  145. }
  146. public void setMajorName(String majorName)
  147. {
  148. this.majorName = majorName;
  149. }
  150. public String getMajorName()
  151. {
  152. return majorName;
  153. }
  154. public void setMajorDirection(String majorDirection)
  155. {
  156. this.majorDirection = majorDirection;
  157. }
  158. public String getMajorDirection()
  159. {
  160. return majorDirection;
  161. }
  162. public void setEnrollCode(String enrollCode) {
  163. this.enrollCode = enrollCode;
  164. }
  165. public String getEnrollCode() {
  166. return enrollCode;
  167. }
  168. public void setMajorEnrollCode(String majorEnrollCode) {
  169. this.majorEnrollCode = majorEnrollCode;
  170. }
  171. public String getMajorEnrollCode() {
  172. return majorEnrollCode;
  173. }
  174. public void setExamineeType(String examineeType)
  175. {
  176. this.examineeType = examineeType;
  177. }
  178. public String getExamineeType()
  179. {
  180. return examineeType;
  181. }
  182. public void setPlanTotal(Integer planTotal)
  183. {
  184. this.planTotal = planTotal;
  185. }
  186. public Integer getPlanTotal()
  187. {
  188. return planTotal;
  189. }
  190. public void setLengthOfSchooling(Integer lengthOfSchooling)
  191. {
  192. this.lengthOfSchooling = lengthOfSchooling;
  193. }
  194. public Integer getLengthOfSchooling()
  195. {
  196. return lengthOfSchooling;
  197. }
  198. public void setScore(Double score)
  199. {
  200. this.score = score;
  201. }
  202. public Double getScore()
  203. {
  204. return score;
  205. }
  206. public void setCulturalScore(Double culturalScore)
  207. {
  208. this.culturalScore = culturalScore;
  209. }
  210. public Double getCulturalScore()
  211. {
  212. return culturalScore;
  213. }
  214. public void setProfScore(Double profScore)
  215. {
  216. this.profScore = profScore;
  217. }
  218. public Double getProfScore()
  219. {
  220. return profScore;
  221. }
  222. public void setSchoolScore(Double schoolScore)
  223. {
  224. this.schoolScore = schoolScore;
  225. }
  226. public Double getSchoolScore()
  227. {
  228. return schoolScore;
  229. }
  230. public void setChinessScore(Double chinessScore)
  231. {
  232. this.chinessScore = chinessScore;
  233. }
  234. public Double getChinessScore()
  235. {
  236. return chinessScore;
  237. }
  238. public void setMathScore(Double mathScore)
  239. {
  240. this.mathScore = mathScore;
  241. }
  242. public Double getMathScore()
  243. {
  244. return mathScore;
  245. }
  246. public void setEnglishScore(Double englishScore)
  247. {
  248. this.englishScore = englishScore;
  249. }
  250. public Double getEnglishScore()
  251. {
  252. return englishScore;
  253. }
  254. public void setCustCond(String custCond)
  255. {
  256. this.custCond = custCond;
  257. }
  258. public String getCustCond()
  259. {
  260. return custCond;
  261. }
  262. public void setComment(String comment)
  263. {
  264. this.comment = comment;
  265. }
  266. public String getComment()
  267. {
  268. return comment;
  269. }
  270. public void setCompany(String company)
  271. {
  272. this.company = company;
  273. }
  274. public String getCompany()
  275. {
  276. return company;
  277. }
  278. public void setTest(String test)
  279. {
  280. this.test = test;
  281. }
  282. public String getTest()
  283. {
  284. return test;
  285. }
  286. public String getEnrollFormula() {
  287. return enrollFormula;
  288. }
  289. public void setEnrollFormula(String enrollFormula) {
  290. this.enrollFormula = enrollFormula;
  291. }
  292. @Override
  293. public String toString() {
  294. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  295. .append("id", getId())
  296. .append("year", getYear())
  297. .append("universityId", getUniversityId())
  298. .append("universityName", getUniversityName())
  299. .append("majorGroup", getMajorGroup())
  300. .append("majorName", getMajorName())
  301. .append("majorDirection", getMajorDirection())
  302. .append("examineeType", getExamineeType())
  303. .append("planTotal", getPlanTotal())
  304. .append("lengthOfSchooling", getLengthOfSchooling())
  305. .append("score", getScore())
  306. .append("culturalScore", getCulturalScore())
  307. .append("profScore", getProfScore())
  308. .append("schoolScore", getSchoolScore())
  309. .append("chinessScore", getChinessScore())
  310. .append("mathScore", getMathScore())
  311. .append("englishScore", getEnglishScore())
  312. .append("custCond", getCustCond())
  313. .append("comment", getComment())
  314. .append("company", getCompany())
  315. .append("test", getTest())
  316. .toString();
  317. }
  318. }