|
@@ -13,8 +13,16 @@ public class GetStudentPaperReq extends BaseRequest {
|
|
|
|
|
|
private static final long serialVersionUID = -6892765618820908426L;
|
|
|
|
|
|
+ /**
|
|
|
+ * 阅卷任务表ID---ecs_marking_mark_task
|
|
|
+ */
|
|
|
private long markTaskId;
|
|
|
|
|
|
+ /**
|
|
|
+ * 待阅卷的考卷信息表ID---ecs_marking_student_paper
|
|
|
+ */
|
|
|
+ private long studentPaperId;
|
|
|
+
|
|
|
public long getMarkTaskId() {
|
|
|
return markTaskId;
|
|
|
}
|
|
@@ -22,4 +30,12 @@ public class GetStudentPaperReq extends BaseRequest {
|
|
|
public void setMarkTaskId(long markTaskId) {
|
|
|
this.markTaskId = markTaskId;
|
|
|
}
|
|
|
+
|
|
|
+ public long getStudentPaperId() {
|
|
|
+ return studentPaperId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentPaperId(long studentPaperId) {
|
|
|
+ this.studentPaperId = studentPaperId;
|
|
|
+ }
|
|
|
}
|