|
@@ -62,9 +62,9 @@ public class OnHandExamInfo implements JsonSerializable {
|
|
|
private String examStatus;
|
|
|
|
|
|
/**
|
|
|
- * 是否有效
|
|
|
+ * 当前考生-是否跳过人脸识别
|
|
|
*/
|
|
|
- //private Boolean isvalid;
|
|
|
+ private Boolean skipFace;
|
|
|
|
|
|
/**
|
|
|
* 是否启用人脸识别
|
|
@@ -91,9 +91,9 @@ public class OnHandExamInfo implements JsonSerializable {
|
|
|
private JSONArray examCycleWeek;
|
|
|
|
|
|
private JSONArray examCycleTimeRange;
|
|
|
-
|
|
|
+
|
|
|
private Boolean showUndertaking;
|
|
|
-
|
|
|
+
|
|
|
private String undertaking;
|
|
|
|
|
|
public String getStudentName() {
|
|
@@ -289,6 +289,14 @@ public class OnHandExamInfo implements JsonSerializable {
|
|
|
this.rootOrgId = rootOrgId;
|
|
|
}
|
|
|
|
|
|
+ public Boolean getSkipFace() {
|
|
|
+ return skipFace;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSkipFace(Boolean skipFace) {
|
|
|
+ this.skipFace = skipFace;
|
|
|
+ }
|
|
|
+
|
|
|
public Boolean getFaceEnable() {
|
|
|
return faceEnable;
|
|
|
}
|
|
@@ -345,21 +353,21 @@ public class OnHandExamInfo implements JsonSerializable {
|
|
|
this.examCycleTimeRange = examCycleTimeRange;
|
|
|
}
|
|
|
|
|
|
- public Boolean getShowUndertaking() {
|
|
|
- return showUndertaking;
|
|
|
- }
|
|
|
+ public Boolean getShowUndertaking() {
|
|
|
+ return showUndertaking;
|
|
|
+ }
|
|
|
|
|
|
- public void setShowUndertaking(Boolean showUndertaking) {
|
|
|
- this.showUndertaking = showUndertaking;
|
|
|
- }
|
|
|
+ public void setShowUndertaking(Boolean showUndertaking) {
|
|
|
+ this.showUndertaking = showUndertaking;
|
|
|
+ }
|
|
|
|
|
|
- public String getUndertaking() {
|
|
|
- return undertaking;
|
|
|
- }
|
|
|
+ public String getUndertaking() {
|
|
|
+ return undertaking;
|
|
|
+ }
|
|
|
|
|
|
- public void setUndertaking(String undertaking) {
|
|
|
- this.undertaking = undertaking;
|
|
|
- }
|
|
|
+ public void setUndertaking(String undertaking) {
|
|
|
+ this.undertaking = undertaking;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
}
|