Browse Source

归档考试

xiatian 7 months ago
parent
commit
7358cc37fb

+ 54 - 43
examcloud-core-examwork-api/src/main/java/cn/com/qmth/examcloud/examwork/api/request/GetExamListReq.java

@@ -8,66 +8,77 @@ import cn.com.qmth.examcloud.api.commons.security.bean.UserDataRule;
 
 public class GetExamListReq extends BaseRequest {
 
-	private static final long serialVersionUID = 3582675273552844749L;
+    private static final long serialVersionUID = 3582675273552844749L;
 
-	private Long rootOrgId;
+    private Long rootOrgId;
 
-	private Boolean enable;
+    private Boolean enable;
 
-	private List<String> examTypeList;
+    private List<String> examTypeList;
 
-	private Long start;
+    private Long start;
 
-	private CallType callType;
+    private CallType callType;
 
-	private UserDataRule ud;
+    private UserDataRule ud;
 
-	public Long getRootOrgId() {
-		return rootOrgId;
-	}
+    // 是否归档
+    private Boolean archived;
 
-	public void setRootOrgId(Long rootOrgId) {
-		this.rootOrgId = rootOrgId;
-	}
+    public Long getRootOrgId() {
+        return rootOrgId;
+    }
 
-	public Boolean getEnable() {
-		return enable;
-	}
+    public void setRootOrgId(Long rootOrgId) {
+        this.rootOrgId = rootOrgId;
+    }
 
-	public void setEnable(Boolean enable) {
-		this.enable = enable;
-	}
+    public Boolean getEnable() {
+        return enable;
+    }
 
-	public List<String> getExamTypeList() {
-		return examTypeList;
-	}
+    public void setEnable(Boolean enable) {
+        this.enable = enable;
+    }
 
-	public void setExamTypeList(List<String> examTypeList) {
-		this.examTypeList = examTypeList;
-	}
+    public List<String> getExamTypeList() {
+        return examTypeList;
+    }
 
-	public Long getStart() {
-		return start;
-	}
+    public void setExamTypeList(List<String> examTypeList) {
+        this.examTypeList = examTypeList;
+    }
 
-	public void setStart(Long start) {
-		this.start = start;
-	}
+    public Long getStart() {
+        return start;
+    }
 
-	public UserDataRule getUd() {
-		return ud;
-	}
+    public void setStart(Long start) {
+        this.start = start;
+    }
 
-	public void setUd(UserDataRule ud) {
-		this.ud = ud;
-	}
+    public UserDataRule getUd() {
+        return ud;
+    }
 
-	public CallType getCallType() {
-		return callType;
-	}
+    public void setUd(UserDataRule ud) {
+        this.ud = ud;
+    }
 
-	public void setCallType(CallType callType) {
-		this.callType = callType;
-	}
+    public CallType getCallType() {
+        return callType;
+    }
+
+    public void setCallType(CallType callType) {
+        this.callType = callType;
+    }
+
+    public Boolean getArchived() {
+        return archived;
+    }
+
+    public void setArchived(Boolean archived) {
+        this.archived = archived;
+    }
 
 }