chenken hace 6 años
padre
commit
25801cca7b

+ 12 - 7
examcloud-core-oe-admin-api/src/main/java/cn/com/qmth/examcloud/core/oe/admin/api/request/ExamRecordReq.java

@@ -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;
 	}
-	
-	
+
 }