|
@@ -3,6 +3,7 @@ package com.qmth.distributed.print.business.bean.dto;
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
import com.qmth.teachcloud.common.bean.dto.BlurryUserDto;
|
|
|
+import com.qmth.teachcloud.common.enums.ExamModelEnum;
|
|
|
import com.qmth.teachcloud.common.enums.FlowStatusEnum;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
@@ -60,6 +61,9 @@ public class ExamTaskDto {
|
|
|
@ApiModelProperty(value = "学期名称")
|
|
|
private String semesterName;
|
|
|
|
|
|
+ @ApiModelProperty(value = "考试模式")
|
|
|
+ private ExamModelEnum examModel;
|
|
|
+
|
|
|
public Boolean getApproveFormStatus() {
|
|
|
return approveFormStatus;
|
|
|
}
|
|
@@ -335,4 +339,12 @@ public class ExamTaskDto {
|
|
|
public void setSemesterName(String semesterName) {
|
|
|
this.semesterName = semesterName;
|
|
|
}
|
|
|
+
|
|
|
+ public ExamModelEnum getExamModel() {
|
|
|
+ return examModel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamModel(ExamModelEnum examModel) {
|
|
|
+ this.examModel = examModel;
|
|
|
+ }
|
|
|
}
|