|
@@ -9,9 +9,15 @@ public class ExamRecordReq extends BaseRequest{
|
|
|
*/
|
|
|
private static final long serialVersionUID = -2218185239574140092L;
|
|
|
|
|
|
+ /**
|
|
|
+ * 考试ID
|
|
|
+ */
|
|
|
private Long examId;
|
|
|
|
|
|
- private Long studentId;
|
|
|
+ /**
|
|
|
+ * 考生ID
|
|
|
+ */
|
|
|
+ private Long examStudentId;
|
|
|
|
|
|
public Long getExamId() {
|
|
|
return examId;
|
|
@@ -21,13 +27,12 @@ public class ExamRecordReq extends BaseRequest{
|
|
|
this.examId = examId;
|
|
|
}
|
|
|
|
|
|
- public Long getStudentId() {
|
|
|
- return studentId;
|
|
|
+ public Long getExamStudentId() {
|
|
|
+ return examStudentId;
|
|
|
}
|
|
|
|
|
|
- public void setStudentId(Long studentId) {
|
|
|
- this.studentId = studentId;
|
|
|
+ public void setExamStudentId(Long examStudentId) {
|
|
|
+ this.examStudentId = examStudentId;
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
}
|