wangwei 6 лет назад
Родитель
Сommit
7ddb67f307

+ 118 - 0
examcloud-core-examwork-api/src/main/java/cn/com/qmth/examcloud/examwork/api/bean/ExamSpecialSettingsBean.java

@@ -0,0 +1,118 @@
+package cn.com.qmth.examcloud.examwork.api.bean;
+
+import java.util.Date;
+
+import cn.com.qmth.examcloud.commons.web.cloud.api.JsonSerializable;
+
+/**
+ * 考试--特殊设置
+ *
+ * @author WANGWEI
+ * @date 2018年5月16日
+ * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
+ */
+public class ExamSpecialSettingsBean implements JsonSerializable {
+
+	private static final long serialVersionUID = -3335725218626631530L;
+
+	private Long id;
+
+	private Long examId;
+
+	private Long courseId;
+
+	private Long orgId;
+
+	private Long rootOrgId;
+
+	private String examType;
+
+	private Boolean examEnable;
+
+	private Date beginTime;
+
+	private Date endTime;
+
+	private Boolean examLimit;
+
+	public Long getId() {
+		return id;
+	}
+
+	public void setId(Long id) {
+		this.id = id;
+	}
+
+	public Long getExamId() {
+		return examId;
+	}
+
+	public void setExamId(Long examId) {
+		this.examId = examId;
+	}
+
+	public Long getCourseId() {
+		return courseId;
+	}
+
+	public void setCourseId(Long courseId) {
+		this.courseId = courseId;
+	}
+
+	public Long getOrgId() {
+		return orgId;
+	}
+
+	public void setOrgId(Long orgId) {
+		this.orgId = 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 Date getBeginTime() {
+		return beginTime;
+	}
+
+	public void setBeginTime(Date beginTime) {
+		this.beginTime = beginTime;
+	}
+
+	public Date getEndTime() {
+		return endTime;
+	}
+
+	public void setEndTime(Date endTime) {
+		this.endTime = endTime;
+	}
+
+	public Boolean getExamLimit() {
+		return examLimit;
+	}
+
+	public void setExamLimit(Boolean examLimit) {
+		this.examLimit = examLimit;
+	}
+
+}

+ 29 - 29
examcloud-core-examwork-api/src/main/java/cn/com/qmth/examcloud/examwork/api/response/GetOngoingExamListResp.java

@@ -1,29 +1,29 @@
-package cn.com.qmth.examcloud.examwork.api.response;
-
-import java.util.List;
-
-import cn.com.qmth.examcloud.commons.web.cloud.api.BaseResponse;
-import cn.com.qmth.examcloud.examwork.api.bean.ExamBean;
-
-/**
- * 类注释
- *
- * @author WANGWEI
- * @date 2018年8月21日
- * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
- */
-public class GetOngoingExamListResp extends BaseResponse {
-
-	private static final long serialVersionUID = -1482780210224441938L;
-
-	private List<ExamBean> examList;
-
-	public List<ExamBean> getExamList() {
-		return examList;
-	}
-
-	public void setExamList(List<ExamBean> examList) {
-		this.examList = examList;
-	}
-
-}
+package cn.com.qmth.examcloud.examwork.api.response;
+
+import java.util.List;
+
+import cn.com.qmth.examcloud.commons.web.cloud.api.BaseResponse;
+import cn.com.qmth.examcloud.examwork.api.bean.ExamSpecialSettingsBean;
+
+/**
+ * 类注释
+ *
+ * @author WANGWEI
+ * @date 2018年8月21日
+ * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
+ */
+public class GetOngoingExamListResp extends BaseResponse {
+
+	private static final long serialVersionUID = -1482780210224441938L;
+
+	private List<ExamSpecialSettingsBean> examSpecialSettingsList;
+
+	public List<ExamSpecialSettingsBean> getExamSpecialSettingsList() {
+		return examSpecialSettingsList;
+	}
+
+	public void setExamSpecialSettingsList(List<ExamSpecialSettingsBean> examSpecialSettingsList) {
+		this.examSpecialSettingsList = examSpecialSettingsList;
+	}
+
+}