|
@@ -1,11 +1,8 @@
|
|
|
package com.qmth.teachcloud.mark.bean.archivescore;
|
|
|
|
|
|
-import javax.validation.constraints.NotNull;
|
|
|
-
|
|
|
import com.qmth.teachcloud.mark.utils.PagerQuery;
|
|
|
-import io.swagger.annotations.ApiParam;
|
|
|
-import org.springframework.web.bind.annotation.RequestParam;
|
|
|
-import oshi.jna.platform.mac.SystemB;
|
|
|
+
|
|
|
+import javax.validation.constraints.NotNull;
|
|
|
|
|
|
public class ArchiveStudentQuery extends PagerQuery {
|
|
|
@NotNull(message = "考试Id不能为空")
|
|
@@ -25,6 +22,16 @@ public class ArchiveStudentQuery extends PagerQuery {
|
|
|
private Double startScore;
|
|
|
// 成绩区间结束
|
|
|
private Double endScore;
|
|
|
+
|
|
|
+ // 客观题成绩区间开始
|
|
|
+ private Double objectiveStartScore;
|
|
|
+ // 客观题成绩区间结束
|
|
|
+ private Double objectiveEndScore;
|
|
|
+ // 主观题成绩区间开始
|
|
|
+ private Double subjectiveStartScore;
|
|
|
+ // 主观题成绩区间结束
|
|
|
+ private Double subjectiveEndScore;
|
|
|
+
|
|
|
private String orderType;
|
|
|
private String orderField;
|
|
|
|
|
@@ -116,7 +123,39 @@ public class ArchiveStudentQuery extends PagerQuery {
|
|
|
this.endScore = endScore;
|
|
|
}
|
|
|
|
|
|
- public String getOrderType() {
|
|
|
+ public Double getObjectiveStartScore() {
|
|
|
+ return objectiveStartScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setObjectiveStartScore(Double objectiveStartScore) {
|
|
|
+ this.objectiveStartScore = objectiveStartScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getObjectiveEndScore() {
|
|
|
+ return objectiveEndScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setObjectiveEndScore(Double objectiveEndScore) {
|
|
|
+ this.objectiveEndScore = objectiveEndScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getSubjectiveStartScore() {
|
|
|
+ return subjectiveStartScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectiveStartScore(Double subjectiveStartScore) {
|
|
|
+ this.subjectiveStartScore = subjectiveStartScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getSubjectiveEndScore() {
|
|
|
+ return subjectiveEndScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectiveEndScore(Double subjectiveEndScore) {
|
|
|
+ this.subjectiveEndScore = subjectiveEndScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOrderType() {
|
|
|
return orderType;
|
|
|
}
|
|
|
|