|
@@ -43,6 +43,11 @@ public class SaveExamStudentReq extends BaseRequest {
|
|
|
*/
|
|
|
private String courseName;
|
|
|
|
|
|
+ /**
|
|
|
+ * 考试课程ID
|
|
|
+ */
|
|
|
+ private Long courseId;
|
|
|
+
|
|
|
/**
|
|
|
* 考试课程code
|
|
|
*/
|
|
@@ -102,6 +107,14 @@ public class SaveExamStudentReq extends BaseRequest {
|
|
|
this.examName = examName;
|
|
|
}
|
|
|
|
|
|
+ public Long getStudentId() {
|
|
|
+ return studentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentId(Long studentId) {
|
|
|
+ this.studentId = studentId;
|
|
|
+ }
|
|
|
+
|
|
|
public String getStudentName() {
|
|
|
return studentName;
|
|
|
}
|
|
@@ -134,6 +147,14 @@ public class SaveExamStudentReq extends BaseRequest {
|
|
|
this.courseName = courseName;
|
|
|
}
|
|
|
|
|
|
+ public Long getCourseId() {
|
|
|
+ return courseId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCourseId(Long courseId) {
|
|
|
+ this.courseId = courseId;
|
|
|
+ }
|
|
|
+
|
|
|
public String getCourseCode() {
|
|
|
return courseCode;
|
|
|
}
|
|
@@ -158,14 +179,6 @@ public class SaveExamStudentReq extends BaseRequest {
|
|
|
this.paperType = paperType;
|
|
|
}
|
|
|
|
|
|
- public Long getStudentId() {
|
|
|
- return studentId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStudentId(Long studentId) {
|
|
|
- this.studentId = studentId;
|
|
|
- }
|
|
|
-
|
|
|
public String getInfoCollector() {
|
|
|
return infoCollector;
|
|
|
}
|