|
@@ -0,0 +1,114 @@
|
|
|
+package com.qmth.themis.business.dto.response;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: 考试场次dto
|
|
|
+ * @Param:
|
|
|
+ * @return:
|
|
|
+ * @Author: wangliang
|
|
|
+ * @Date: 2020/8/3
|
|
|
+ */
|
|
|
+public class TEExamActivityQueryDto implements Serializable {
|
|
|
+
|
|
|
+ private Long id;//考试id
|
|
|
+ private String code;//考试场次id
|
|
|
+ private Long examId;//考试批次id
|
|
|
+ private Integer prepareSeconds;//提前多长时间开始候考(分钟)
|
|
|
+ private Integer maxDurationSeconds;//最大考试时长
|
|
|
+ private Integer enable;//是否启用
|
|
|
+ private Integer openingSeconds;//允许开考时长(分钟);
|
|
|
+ private Date startTime;//开始时间
|
|
|
+ private Date finishTime;//结束时间
|
|
|
+ private Date updateTime;//更新时间
|
|
|
+ private String updateName;//更新人
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCode() {
|
|
|
+ return code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCode(String code) {
|
|
|
+ this.code = code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getExamId() {
|
|
|
+ return examId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamId(Long examId) {
|
|
|
+ this.examId = examId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getPrepareSeconds() {
|
|
|
+ return prepareSeconds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPrepareSeconds(Integer prepareSeconds) {
|
|
|
+ this.prepareSeconds = prepareSeconds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMaxDurationSeconds() {
|
|
|
+ return maxDurationSeconds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaxDurationSeconds(Integer maxDurationSeconds) {
|
|
|
+ this.maxDurationSeconds = maxDurationSeconds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getEnable() {
|
|
|
+ return enable;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEnable(Integer enable) {
|
|
|
+ this.enable = enable;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getOpeningSeconds() {
|
|
|
+ return openingSeconds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOpeningSeconds(Integer openingSeconds) {
|
|
|
+ this.openingSeconds = openingSeconds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getStartTime() {
|
|
|
+ return startTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStartTime(Date startTime) {
|
|
|
+ this.startTime = startTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getFinishTime() {
|
|
|
+ return finishTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFinishTime(Date finishTime) {
|
|
|
+ this.finishTime = finishTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getUpdateTime() {
|
|
|
+ return updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(Date updateTime) {
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUpdateName() {
|
|
|
+ return updateName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateName(String updateName) {
|
|
|
+ this.updateName = updateName;
|
|
|
+ }
|
|
|
+}
|