OuterExamStudentBean.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. package cn.com.qmth.sdk.bean;
  2. import cn.com.qmth.sdk.exchange.JsonSerializable;
  3. /**
  4. * 类注释
  5. *
  6. * @author WANGWEI
  7. * @date 2018年11月14日
  8. * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
  9. */
  10. public class OuterExamStudentBean implements JsonSerializable {
  11. private static final long serialVersionUID = 2079003980099252759L;
  12. /**
  13. * 顶级机构ID
  14. */
  15. private Long rootOrgId;
  16. /**
  17. * 考试ID
  18. */
  19. private Long examId;
  20. /**
  21. * 考试名称
  22. */
  23. private String examName;
  24. /**
  25. * 学生姓名
  26. */
  27. private String studentName;
  28. /**
  29. * 学生学号
  30. */
  31. private String studentCode;
  32. /**
  33. * 学生身份证号
  34. */
  35. private String identityNumber;
  36. /**
  37. * 考试课程名称
  38. */
  39. private String courseName;
  40. /**
  41. * 考试课程code
  42. */
  43. private String courseCode;
  44. /**
  45. * 考试课程level
  46. */
  47. private String courseLevel;
  48. /**
  49. * 试卷类型
  50. */
  51. private String paperType;
  52. public Long getRootOrgId() {
  53. return rootOrgId;
  54. }
  55. public void setRootOrgId(Long rootOrgId) {
  56. this.rootOrgId = rootOrgId;
  57. }
  58. public Long getExamId() {
  59. return examId;
  60. }
  61. public void setExamId(Long examId) {
  62. this.examId = examId;
  63. }
  64. public String getExamName() {
  65. return examName;
  66. }
  67. public void setExamName(String examName) {
  68. this.examName = examName;
  69. }
  70. public String getStudentName() {
  71. return studentName;
  72. }
  73. public void setStudentName(String studentName) {
  74. this.studentName = studentName;
  75. }
  76. public String getStudentCode() {
  77. return studentCode;
  78. }
  79. public void setStudentCode(String studentCode) {
  80. this.studentCode = studentCode;
  81. }
  82. public String getIdentityNumber() {
  83. return identityNumber;
  84. }
  85. public void setIdentityNumber(String identityNumber) {
  86. this.identityNumber = identityNumber;
  87. }
  88. public String getCourseName() {
  89. return courseName;
  90. }
  91. public void setCourseName(String courseName) {
  92. this.courseName = courseName;
  93. }
  94. public String getCourseCode() {
  95. return courseCode;
  96. }
  97. public void setCourseCode(String courseCode) {
  98. this.courseCode = courseCode;
  99. }
  100. public String getCourseLevel() {
  101. return courseLevel;
  102. }
  103. public void setCourseLevel(String courseLevel) {
  104. this.courseLevel = courseLevel;
  105. }
  106. public String getPaperType() {
  107. return paperType;
  108. }
  109. public void setPaperType(String paperType) {
  110. this.paperType = paperType;
  111. }
  112. }