123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- package cn.com.qmth.sdk.bean;
- import cn.com.qmth.sdk.exchange.JsonSerializable;
- /**
- * 类注释
- *
- * @author WANGWEI
- * @date 2018年11月14日
- * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
- */
- public class OuterExamStudentBean implements JsonSerializable {
- private static final long serialVersionUID = 2079003980099252759L;
- /**
- * 顶级机构ID
- */
- private Long rootOrgId;
- /**
- * 考试ID
- */
- private Long examId;
- /**
- * 考试名称
- */
- private String examName;
- /**
- * 学生姓名
- */
- private String studentName;
- /**
- * 学生学号
- */
- private String studentCode;
- /**
- * 学生身份证号
- */
- private String identityNumber;
- /**
- * 考试课程名称
- */
- private String courseName;
- /**
- * 考试课程code
- */
- private String courseCode;
- /**
- * 考试课程level
- */
- private String courseLevel;
- /**
- * 试卷类型
- */
- private String paperType;
- public Long getRootOrgId() {
- return rootOrgId;
- }
- public void setRootOrgId(Long rootOrgId) {
- this.rootOrgId = rootOrgId;
- }
- public Long getExamId() {
- return examId;
- }
- public void setExamId(Long examId) {
- this.examId = examId;
- }
- public String getExamName() {
- return examName;
- }
- public void setExamName(String examName) {
- this.examName = examName;
- }
- public String getStudentName() {
- return studentName;
- }
- public void setStudentName(String studentName) {
- this.studentName = studentName;
- }
- public String getStudentCode() {
- return studentCode;
- }
- public void setStudentCode(String studentCode) {
- this.studentCode = studentCode;
- }
- public String getIdentityNumber() {
- return identityNumber;
- }
- public void setIdentityNumber(String identityNumber) {
- this.identityNumber = identityNumber;
- }
- public String getCourseName() {
- return courseName;
- }
- public void setCourseName(String courseName) {
- this.courseName = courseName;
- }
- public String getCourseCode() {
- return courseCode;
- }
- public void setCourseCode(String courseCode) {
- this.courseCode = courseCode;
- }
- public String getCourseLevel() {
- return courseLevel;
- }
- public void setCourseLevel(String courseLevel) {
- this.courseLevel = courseLevel;
- }
- public String getPaperType() {
- return paperType;
- }
- public void setPaperType(String paperType) {
- this.paperType = paperType;
- }
- }
|