|
@@ -3,6 +3,7 @@ package com.qmth.teachcloud.mark.dto.mark.score;
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
import com.qmth.teachcloud.common.enums.ScanStatus;
|
|
import com.qmth.teachcloud.common.enums.ScanStatus;
|
|
|
|
+import com.qmth.teachcloud.common.enums.mark.SubjectiveStatus;
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
@@ -23,6 +24,7 @@ public class StudentScoreDetailDto {
|
|
private String objectiveScore;
|
|
private String objectiveScore;
|
|
private String subjectiveScore;
|
|
private String subjectiveScore;
|
|
private String totalScore;
|
|
private String totalScore;
|
|
|
|
+ private String objectiveScoreList;
|
|
private String subjectiveScoreList;
|
|
private String subjectiveScoreList;
|
|
private String checkUserId;
|
|
private String checkUserId;
|
|
private String checkUserLoginName;
|
|
private String checkUserLoginName;
|
|
@@ -33,10 +35,15 @@ public class StudentScoreDetailDto {
|
|
private Long examStartTime;
|
|
private Long examStartTime;
|
|
private Long examEndTime;
|
|
private Long examEndTime;
|
|
private ScanStatus scanStatus;
|
|
private ScanStatus scanStatus;
|
|
|
|
+ private SubjectiveStatus subjectiveStatus;
|
|
private Boolean absent;
|
|
private Boolean absent;
|
|
private Boolean omrAbsent;
|
|
private Boolean omrAbsent;
|
|
private String statusDisplay;
|
|
private String statusDisplay;
|
|
private Boolean upload;
|
|
private Boolean upload;
|
|
|
|
+ // 主观题检查标记
|
|
|
|
+ private Boolean subjectiveCheckFlag;
|
|
|
|
+ // 客观题标记
|
|
|
|
+ private Boolean objectiveCheckFlag;
|
|
|
|
|
|
public Long getStudentId() {
|
|
public Long getStudentId() {
|
|
return studentId;
|
|
return studentId;
|
|
@@ -142,6 +149,14 @@ public class StudentScoreDetailDto {
|
|
this.totalScore = totalScore;
|
|
this.totalScore = totalScore;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public String getObjectiveScoreList() {
|
|
|
|
+ return objectiveScoreList;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setObjectiveScoreList(String objectiveScoreList) {
|
|
|
|
+ this.objectiveScoreList = objectiveScoreList;
|
|
|
|
+ }
|
|
|
|
+
|
|
public String getSubjectiveScoreList() {
|
|
public String getSubjectiveScoreList() {
|
|
return subjectiveScoreList;
|
|
return subjectiveScoreList;
|
|
}
|
|
}
|
|
@@ -222,6 +237,14 @@ public class StudentScoreDetailDto {
|
|
this.scanStatus = scanStatus;
|
|
this.scanStatus = scanStatus;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public SubjectiveStatus getSubjectiveStatus() {
|
|
|
|
+ return subjectiveStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSubjectiveStatus(SubjectiveStatus subjectiveStatus) {
|
|
|
|
+ this.subjectiveStatus = subjectiveStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Boolean getAbsent() {
|
|
public Boolean getAbsent() {
|
|
return absent;
|
|
return absent;
|
|
}
|
|
}
|
|
@@ -253,4 +276,20 @@ public class StudentScoreDetailDto {
|
|
public void setUpload(Boolean upload) {
|
|
public void setUpload(Boolean upload) {
|
|
this.upload = upload;
|
|
this.upload = upload;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public Boolean getSubjectiveCheckFlag() {
|
|
|
|
+ return subjectiveCheckFlag;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSubjectiveCheckFlag(Boolean subjectiveCheckFlag) {
|
|
|
|
+ this.subjectiveCheckFlag = subjectiveCheckFlag;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Boolean getObjectiveCheckFlag() {
|
|
|
|
+ return objectiveCheckFlag;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setObjectiveCheckFlag(Boolean objectiveCheckFlag) {
|
|
|
|
+ this.objectiveCheckFlag = objectiveCheckFlag;
|
|
|
|
+ }
|
|
}
|
|
}
|