|
@@ -69,6 +69,8 @@ public class ExamStudentSearchQuery extends BaseQuery<ExamStudent> {
|
|
|
private Double endScroe;
|
|
|
|
|
|
private Boolean breach;
|
|
|
+
|
|
|
+ private Integer studentId;
|
|
|
|
|
|
public void orderByExamNumber() {
|
|
|
setSort(new Sort(Direction.ASC, "examNumber"));
|
|
@@ -321,4 +323,12 @@ public class ExamStudentSearchQuery extends BaseQuery<ExamStudent> {
|
|
|
public void setManualAbsent(Boolean manualAbsent) {
|
|
|
this.manualAbsent = manualAbsent;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getStudentId() {
|
|
|
+ return studentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentId(Integer studentId) {
|
|
|
+ this.studentId = studentId;
|
|
|
+ }
|
|
|
}
|