|
@@ -66,12 +66,23 @@ public class TEExamSummary implements Serializable {
|
|
@ApiModelProperty(value = "预警未读数")
|
|
@ApiModelProperty(value = "预警未读数")
|
|
private Integer warningUnread = 0;
|
|
private Integer warningUnread = 0;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "预警考生未读数(去重)")
|
|
|
|
+ private Integer warningStudentUnread = 0;
|
|
|
|
+
|
|
@ApiModelProperty(value = "陌生人脸预警总数")
|
|
@ApiModelProperty(value = "陌生人脸预警总数")
|
|
private Integer warningMultipleFaceCount = 0;
|
|
private Integer warningMultipleFaceCount = 0;
|
|
|
|
|
|
@ApiModelProperty(value = "异常数据总数")
|
|
@ApiModelProperty(value = "异常数据总数")
|
|
private Integer exceptionCount = 0;
|
|
private Integer exceptionCount = 0;
|
|
|
|
|
|
|
|
+ public Integer getWarningStudentUnread() {
|
|
|
|
+ return warningStudentUnread;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setWarningStudentUnread(Integer warningStudentUnread) {
|
|
|
|
+ this.warningStudentUnread = warningStudentUnread;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Long getId() {
|
|
public Long getId() {
|
|
return id;
|
|
return id;
|
|
}
|
|
}
|