LearnStudent.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. package com.ruoyi.learn.domain;
  2. import com.ruoyi.common.annotation.Excel;
  3. import com.ruoyi.common.core.domain.BaseEntity;
  4. /**
  5. * 学生对象 learn_student
  6. *
  7. * @author ruoyi
  8. * @date 2025-09-18
  9. */
  10. public class LearnStudent extends BaseEntity
  11. {
  12. private static final long serialVersionUID = 1L;
  13. /** 学生用户ID */
  14. private Long studentId;
  15. /** 班级ID */
  16. @Excel(name = "班级ID")
  17. private Long classId;
  18. /** 学校ID */
  19. @Excel(name = "学校ID")
  20. private Long schoolId;
  21. /** 校区ID */
  22. @Excel(name = "校区ID")
  23. private Long campusId;
  24. /** 院校id */
  25. @Excel(name = "院校id")
  26. private Long universityId;
  27. @Excel(name = "定向键")
  28. private String directKey;
  29. @Excel(name = "定向考试类型")
  30. private String modules;
  31. @Excel(name = "专业组")
  32. private String majorGroup;
  33. /** 计划专业id */
  34. @Excel(name = "计划专业id")
  35. private Long majorPlanId;
  36. @Excel(name = "考生类型")
  37. private String examType;
  38. private String studentName;
  39. private String paperId;
  40. private Integer status;
  41. public Long getStudentId() {
  42. return studentId;
  43. }
  44. public void setStudentId(Long studentId) {
  45. this.studentId = studentId;
  46. }
  47. public Long getClassId() {
  48. return classId;
  49. }
  50. public void setClassId(Long classId) {
  51. this.classId = classId;
  52. }
  53. public String getStudentName() {
  54. return studentName;
  55. }
  56. public void setStudentName(String studentName) {
  57. this.studentName = studentName;
  58. }
  59. public Long getSchoolId() {
  60. return schoolId;
  61. }
  62. public void setSchoolId(Long schoolId) {
  63. this.schoolId = schoolId;
  64. }
  65. public Long getCampusId() {
  66. return campusId;
  67. }
  68. public void setCampusId(Long campusId) {
  69. this.campusId = campusId;
  70. }
  71. public Long getUniversityId() {
  72. return universityId;
  73. }
  74. public void setUniversityId(Long universityId) {
  75. this.universityId = universityId;
  76. }
  77. public String getDirectKey() {
  78. return directKey;
  79. }
  80. public void setDirectKey(String directKey) {
  81. this.directKey = directKey;
  82. }
  83. public String getMajorGroup() {
  84. return majorGroup;
  85. }
  86. public void setMajorGroup(String majorGroup) {
  87. this.majorGroup = majorGroup;
  88. }
  89. public Long getMajorPlanId() {
  90. return majorPlanId;
  91. }
  92. public void setMajorPlanId(Long majorPlanId) {
  93. this.majorPlanId = majorPlanId;
  94. }
  95. public String getPaperId() {
  96. return paperId;
  97. }
  98. public void setPaperId(String paperId) {
  99. this.paperId = paperId;
  100. }
  101. public Integer getStatus() {
  102. return status;
  103. }
  104. public void setStatus(Integer status) {
  105. this.status = status;
  106. }
  107. public String getExamType() {
  108. return examType;
  109. }
  110. public void setExamType(String examType) {
  111. this.examType = examType;
  112. }
  113. public String getModules() {
  114. return modules;
  115. }
  116. public void setModules(String modules) {
  117. this.modules = modules;
  118. }
  119. }