|
@@ -31,6 +31,8 @@ public class ChangeLevelDTO implements Serializable{
|
|
|
private Integer randomSeq;
|
|
|
private Integer auditStatus;
|
|
|
private String examNumber;
|
|
|
+ private boolean shift;
|
|
|
+ private boolean shiftScore;
|
|
|
|
|
|
public Integer getRandomSeq() {
|
|
|
return randomSeq;
|
|
@@ -203,4 +205,20 @@ public class ChangeLevelDTO implements Serializable{
|
|
|
public void setExamNumber(String examNumber) {
|
|
|
this.examNumber = examNumber;
|
|
|
}
|
|
|
+
|
|
|
+ public boolean isShift() {
|
|
|
+ return shift;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setShift(boolean shift) {
|
|
|
+ this.shift = shift;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isShiftScore() {
|
|
|
+ return shiftScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setShiftScore(boolean shiftScore) {
|
|
|
+ this.shiftScore = shiftScore;
|
|
|
+ }
|
|
|
}
|