|
@@ -1,41 +1,50 @@
|
|
|
-package cn.com.qmth.examcloud.marking.api.request;
|
|
|
-
|
|
|
-import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
|
|
|
-
|
|
|
-/**
|
|
|
- * @ClassName GetMarkTaskReq
|
|
|
- * @Description TODO
|
|
|
- * @Author nikang
|
|
|
- * @Date 2018/11/27 17:07
|
|
|
- * @Version 3.0
|
|
|
- */
|
|
|
-public class GetMarkTaskReq extends BaseRequest {
|
|
|
- private static final long serialVersionUID = 8360867457944678312L;
|
|
|
- private Long workId;
|
|
|
- private Long userId;
|
|
|
- private String courseCode;
|
|
|
-
|
|
|
- public Long getWorkId() {
|
|
|
- return workId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setWorkId(Long workId) {
|
|
|
- this.workId = workId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getUserId() {
|
|
|
- return userId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUserId(Long userId) {
|
|
|
- this.userId = userId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCourseCode() {
|
|
|
- return courseCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCourseCode(String courseCode) {
|
|
|
- this.courseCode = courseCode;
|
|
|
- }
|
|
|
-}
|
|
|
+package cn.com.qmth.examcloud.marking.api.request;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @ClassName GetMarkTaskReq
|
|
|
+ * @Author nikang
|
|
|
+ * @Date 2018/11/27 17:07
|
|
|
+ * @Version 3.0
|
|
|
+ */
|
|
|
+public class GetMarkTaskReq extends BaseRequest {
|
|
|
+ private static final long serialVersionUID = 8360867457944678312L;
|
|
|
+ private Long rootOrgId;
|
|
|
+ private Long workId;
|
|
|
+ private Long userId;
|
|
|
+ private String courseCode;
|
|
|
+
|
|
|
+ public Long getWorkId() {
|
|
|
+ return workId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWorkId(Long workId) {
|
|
|
+ this.workId = workId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getUserId() {
|
|
|
+ return userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserId(Long userId) {
|
|
|
+ this.userId = userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCourseCode() {
|
|
|
+ return courseCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCourseCode(String courseCode) {
|
|
|
+ this.courseCode = courseCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getRootOrgId() {
|
|
|
+ return rootOrgId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRootOrgId(Long rootOrgId) {
|
|
|
+ this.rootOrgId = rootOrgId;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|