|
@@ -2,9 +2,9 @@ package com.qmth.teachcloud.mark.dto.mark.mark;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
+import com.qmth.teachcloud.common.enums.EnumResult;
|
|
|
import com.qmth.teachcloud.common.enums.mark.MarkMode;
|
|
|
import com.qmth.teachcloud.common.enums.mark.MarkPaperStatus;
|
|
|
-import com.qmth.teachcloud.common.enums.mark.MarkProblemType;
|
|
|
import com.qmth.teachcloud.mark.enums.ExamType;
|
|
|
|
|
|
public class MarkSettingDto {
|
|
@@ -20,7 +20,7 @@ public class MarkSettingDto {
|
|
|
private Boolean forceSpecialTag;
|
|
|
private String uiSetting;
|
|
|
private MarkPaperStatus statusValue;
|
|
|
- private List<MarkProblemType> problemTypes;
|
|
|
+ private List<EnumResult> problemTypes;
|
|
|
private Integer groupNumber;
|
|
|
private Integer topCount;
|
|
|
private Double[] splitConfig;
|
|
@@ -107,10 +107,10 @@ public class MarkSettingDto {
|
|
|
public void setStatusValue(MarkPaperStatus statusValue) {
|
|
|
this.statusValue = statusValue;
|
|
|
}
|
|
|
- public List<MarkProblemType> getProblemTypes() {
|
|
|
+ public List<EnumResult> getProblemTypes() {
|
|
|
return problemTypes;
|
|
|
}
|
|
|
- public void setProblemTypes(List<MarkProblemType> problemTypes) {
|
|
|
+ public void setProblemTypes(List<EnumResult> problemTypes) {
|
|
|
this.problemTypes = problemTypes;
|
|
|
}
|
|
|
public Integer getGroupNumber() {
|