|
@@ -77,6 +77,39 @@ public class TEExamQueryDto implements Serializable {
|
|
|
@ApiModelProperty(value = "预警条数")
|
|
|
private Integer warnCount;
|
|
|
|
|
|
+ @ApiModelProperty(value = "是否允许考生发起语音通话,false:否,true:是")
|
|
|
+ private Boolean examStudentCallEnable = true;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否推送客观分,0:否,1:是")
|
|
|
+ private Boolean objectiveScorePush = false;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否推送违纪考生,0:否,1:是")
|
|
|
+ private Boolean examStudentBreachPush = false;
|
|
|
+
|
|
|
+ public Boolean getExamStudentCallEnable() {
|
|
|
+ return examStudentCallEnable;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamStudentCallEnable(Boolean examStudentCallEnable) {
|
|
|
+ this.examStudentCallEnable = examStudentCallEnable;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Boolean getObjectiveScorePush() {
|
|
|
+ return objectiveScorePush;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setObjectiveScorePush(Boolean objectiveScorePush) {
|
|
|
+ this.objectiveScorePush = objectiveScorePush;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Boolean getExamStudentBreachPush() {
|
|
|
+ return examStudentBreachPush;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamStudentBreachPush(Boolean examStudentBreachPush) {
|
|
|
+ this.examStudentBreachPush = examStudentBreachPush;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getWarnCount() {
|
|
|
return warnCount;
|
|
|
}
|