|
@@ -11,16 +11,22 @@ public class ExamRecordDataVO implements Serializable {
|
|
|
|
|
|
private Long rootOrgId;
|
|
private Long rootOrgId;
|
|
|
|
|
|
|
|
+ private String rootOrgName;
|
|
|
|
+
|
|
private Long examId;
|
|
private Long examId;
|
|
|
|
|
|
private Long courseId;
|
|
private Long courseId;
|
|
|
|
|
|
|
|
+ private String courseCode;
|
|
|
|
+
|
|
private Long studentId;
|
|
private Long studentId;
|
|
|
|
|
|
private Long examStudentId;
|
|
private Long examStudentId;
|
|
|
|
|
|
private String examType;
|
|
private String examType;
|
|
|
|
|
|
|
|
+ private String identityNumber;
|
|
|
|
+
|
|
private String examRecordStatus;
|
|
private String examRecordStatus;
|
|
|
|
|
|
private Date creationTime;
|
|
private Date creationTime;
|
|
@@ -41,6 +47,14 @@ public class ExamRecordDataVO implements Serializable {
|
|
this.rootOrgId = rootOrgId;
|
|
this.rootOrgId = rootOrgId;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public String getRootOrgName() {
|
|
|
|
+ return rootOrgName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setRootOrgName(String rootOrgName) {
|
|
|
|
+ this.rootOrgName = rootOrgName;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Long getExamId() {
|
|
public Long getExamId() {
|
|
return examId;
|
|
return examId;
|
|
}
|
|
}
|
|
@@ -57,6 +71,14 @@ public class ExamRecordDataVO implements Serializable {
|
|
this.courseId = courseId;
|
|
this.courseId = courseId;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public String getCourseCode() {
|
|
|
|
+ return courseCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCourseCode(String courseCode) {
|
|
|
|
+ this.courseCode = courseCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Long getStudentId() {
|
|
public Long getStudentId() {
|
|
return studentId;
|
|
return studentId;
|
|
}
|
|
}
|
|
@@ -81,6 +103,14 @@ public class ExamRecordDataVO implements Serializable {
|
|
this.examType = examType;
|
|
this.examType = examType;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public String getIdentityNumber() {
|
|
|
|
+ return identityNumber;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setIdentityNumber(String identityNumber) {
|
|
|
|
+ this.identityNumber = identityNumber;
|
|
|
|
+ }
|
|
|
|
+
|
|
public String getExamRecordStatus() {
|
|
public String getExamRecordStatus() {
|
|
return examRecordStatus;
|
|
return examRecordStatus;
|
|
}
|
|
}
|