wangwei il y a 6 ans
Parent
commit
b7a7adb854

+ 56 - 46
examcloud-core-examwork-api/src/main/java/cn/com/qmth/examcloud/examwork/api/request/GetOngoingExamListReq.java

@@ -1,46 +1,56 @@
-package cn.com.qmth.examcloud.examwork.api.request;
-
-import cn.com.qmth.examcloud.commons.web.cloud.api.BaseRequest;
-
-/**
- * 类注释
- *
- * @author WANGWEI
- * @date 2018年8月21日
- * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
- */
-public class GetOngoingExamListReq extends BaseRequest {
-
-	private static final long serialVersionUID = 8861900598975341544L;
-
-	private Long rootOrgId;
-
-	private String examType;
-
-	private Boolean examEnable;
-
-	public Long getRootOrgId() {
-		return rootOrgId;
-	}
-
-	public void setRootOrgId(Long rootOrgId) {
-		this.rootOrgId = rootOrgId;
-	}
-
-	public String getExamType() {
-		return examType;
-	}
-
-	public void setExamType(String examType) {
-		this.examType = examType;
-	}
-
-	public Boolean getExamEnable() {
-		return examEnable;
-	}
-
-	public void setExamEnable(Boolean examEnable) {
-		this.examEnable = examEnable;
-	}
-
-}
+package cn.com.qmth.examcloud.examwork.api.request;
+
+import cn.com.qmth.examcloud.commons.web.cloud.api.BaseRequest;
+
+/**
+ * 类注释
+ *
+ * @author WANGWEI
+ * @date 2018年8月21日
+ * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
+ */
+public class GetOngoingExamListReq extends BaseRequest {
+
+	private static final long serialVersionUID = 8861900598975341544L;
+
+	private Long rootOrgId;
+
+	private String examType;
+
+	private Boolean examEnable;
+
+	private Long orgId;
+
+	public Long getRootOrgId() {
+		return rootOrgId;
+	}
+
+	public void setRootOrgId(Long rootOrgId) {
+		this.rootOrgId = rootOrgId;
+	}
+
+	public String getExamType() {
+		return examType;
+	}
+
+	public void setExamType(String examType) {
+		this.examType = examType;
+	}
+
+	public Boolean getExamEnable() {
+		return examEnable;
+	}
+
+	public void setExamEnable(Boolean examEnable) {
+		this.examEnable = examEnable;
+	}
+
+	public Long getOrgId() {
+		return orgId;
+	}
+
+	public void setOrgId(Long orgId) {
+		this.orgId = orgId;
+	}
+
+}