ResumeEducation.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. package com.ruoyi.system.domain.resume;
  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. * 简历教育信息管理对象 resume_education
  8. *
  9. * @author ruoyi
  10. * @date 2024-02-21
  11. */
  12. public class ResumeEducation extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** 教育记录ID */
  16. private Long eduId;
  17. /** 学校名称 */
  18. @Excel(name = "学校名称")
  19. private String schoolName;
  20. /** 专业 */
  21. @Excel(name = "专业")
  22. private String major;
  23. /** 入学时间 */
  24. @Excel(name = "入学时间")
  25. private String eduStartDate;
  26. /** 毕业时间 */
  27. @Excel(name = "毕业时间")
  28. private String eduEndDate;
  29. /** 学历 */
  30. @Excel(name = "学历")
  31. private String degree;
  32. /** 简历ID(外键) */
  33. @Excel(name = "简历ID(外键)")
  34. private Long resumeId;
  35. /** 描述 */
  36. @Excel(name = "描述")
  37. private String detail;
  38. /** 排序 */
  39. @Excel(name = "排序")
  40. private Long orderBy;
  41. public void setEduId(Long eduId)
  42. {
  43. this.eduId = eduId;
  44. }
  45. public Long getEduId()
  46. {
  47. return eduId;
  48. }
  49. public void setSchoolName(String schoolName)
  50. {
  51. this.schoolName = schoolName;
  52. }
  53. public String getSchoolName()
  54. {
  55. return schoolName;
  56. }
  57. public void setMajor(String major)
  58. {
  59. this.major = major;
  60. }
  61. public String getMajor()
  62. {
  63. return major;
  64. }
  65. public void setEduStartDate(String eduStartDate)
  66. {
  67. this.eduStartDate = eduStartDate;
  68. }
  69. public String getEduStartDate()
  70. {
  71. return eduStartDate;
  72. }
  73. public void setEduEndDate(String eduEndDate)
  74. {
  75. this.eduEndDate = eduEndDate;
  76. }
  77. public String getEduEndDate()
  78. {
  79. return eduEndDate;
  80. }
  81. public void setDegree(String degree)
  82. {
  83. this.degree = degree;
  84. }
  85. public String getDegree()
  86. {
  87. return degree;
  88. }
  89. public void setResumeId(Long resumeId)
  90. {
  91. this.resumeId = resumeId;
  92. }
  93. public Long getResumeId()
  94. {
  95. return resumeId;
  96. }
  97. public void setDetail(String detail)
  98. {
  99. this.detail = detail;
  100. }
  101. public String getDetail()
  102. {
  103. return detail;
  104. }
  105. public void setOrderBy(Long orderBy)
  106. {
  107. this.orderBy = orderBy;
  108. }
  109. public Long getOrderBy()
  110. {
  111. return orderBy;
  112. }
  113. @Override
  114. public String toString() {
  115. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  116. .append("eduId", getEduId())
  117. .append("schoolName", getSchoolName())
  118. .append("major", getMajor())
  119. .append("eduStartDate", getEduStartDate())
  120. .append("eduEndDate", getEduEndDate())
  121. .append("degree", getDegree())
  122. .append("resumeId", getResumeId())
  123. .append("detail", getDetail())
  124. .append("orderBy", getOrderBy())
  125. .toString();
  126. }
  127. }