|
@@ -1,6 +1,7 @@
|
|
|
package cn.com.qmth.examcloud.marking.api.request;
|
|
|
|
|
|
import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
|
|
|
+import cn.com.qmth.examcloud.api.commons.security.bean.UserDataRule;
|
|
|
|
|
|
/**
|
|
|
* @ClassName StudentPaperReq
|
|
@@ -17,6 +18,7 @@ public class GetStudentPaperReq extends BaseRequest {
|
|
|
* 阅卷任务表ID---ecs_marking_mark_task
|
|
|
*/
|
|
|
private Long markTaskId;
|
|
|
+ private UserDataRule orgUd;
|
|
|
|
|
|
/**
|
|
|
* 待阅卷的考卷信息表ID---ecs_marking_student_paper
|
|
@@ -38,4 +40,14 @@ public class GetStudentPaperReq extends BaseRequest {
|
|
|
public void setStudentPaperId(Long studentPaperId) {
|
|
|
this.studentPaperId = studentPaperId;
|
|
|
}
|
|
|
+
|
|
|
+ public UserDataRule getOrgUd() {
|
|
|
+ return orgUd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrgUd(UserDataRule orgUd) {
|
|
|
+ this.orgUd = orgUd;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|