소스 검색

阅卷慢查询优化

xiatian 6 년 전
부모
커밋
3ceee7101a
1개의 변경된 파일50개의 추가작업 그리고 41개의 파일을 삭제
  1. 50 41
      examcloud-core-marking-api/src/main/java/cn/com/qmth/examcloud/marking/api/request/GetMarkTaskReq.java

+ 50 - 41
examcloud-core-marking-api/src/main/java/cn/com/qmth/examcloud/marking/api/request/GetMarkTaskReq.java

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