|
@@ -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;
|
|
|
import cn.com.qmth.examcloud.marking.api.bean.MarkWorkBean;
|
|
|
|
|
|
/**
|
|
@@ -13,6 +14,7 @@ import cn.com.qmth.examcloud.marking.api.bean.MarkWorkBean;
|
|
|
public class GetMarkWorkReq extends BaseRequest {
|
|
|
private static final long serialVersionUID = -9154173403760764631L;
|
|
|
private MarkWorkBean markWorkBean;
|
|
|
+ private UserDataRule ud;
|
|
|
|
|
|
public MarkWorkBean getMarkWorkBean() {
|
|
|
return markWorkBean;
|
|
@@ -24,4 +26,14 @@ public class GetMarkWorkReq extends BaseRequest {
|
|
|
|
|
|
public GetMarkWorkReq() {
|
|
|
}
|
|
|
+
|
|
|
+ public UserDataRule getUd() {
|
|
|
+ return ud;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUd(UserDataRule ud) {
|
|
|
+ this.ud = ud;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|