|
@@ -64,8 +64,12 @@ public class InvigilateListHistoryBean implements Serializable {
|
|
|
@ExcelProperty(name = "姓名", width = 30, index = 6)
|
|
|
private String name;
|
|
|
|
|
|
+ @ApiModelProperty(name = "班级")
|
|
|
+ @ExcelProperty(name = "班级", width = 30, index = 7)
|
|
|
+ private String classNo;
|
|
|
+
|
|
|
@ApiModelProperty(name = "考生状态")
|
|
|
- @ExcelProperty(name = "状态", width = 30, index = 9)
|
|
|
+ @ExcelProperty(name = "状态", width = 30, index = 10)
|
|
|
private String status;
|
|
|
|
|
|
@ApiModelProperty(name = "考生状态值")
|
|
@@ -75,39 +79,47 @@ public class InvigilateListHistoryBean implements Serializable {
|
|
|
private FinishTypeEnum finishType;
|
|
|
|
|
|
@ApiModelProperty(name = "交卷原因")
|
|
|
- @ExcelProperty(name = "交卷方式", width = 30, index = 10)
|
|
|
+ @ExcelProperty(name = "交卷方式", width = 30, index = 11)
|
|
|
private String finishTypeStr;
|
|
|
|
|
|
@ApiModelProperty(name = "预警量")
|
|
|
- @ExcelProperty(name = "预警数", width = 30, index = 13)
|
|
|
+ @ExcelProperty(name = "预警数", width = 30, index = 14)
|
|
|
private Integer warningCount;
|
|
|
|
|
|
@ApiModelProperty(name = "陌生人脸")
|
|
|
- @ExcelProperty(name = "陌生人脸", width = 30, index = 11)
|
|
|
+ @ExcelProperty(name = "陌生人脸", width = 30, index = 12)
|
|
|
private Integer multipleFaceCount;
|
|
|
|
|
|
@ApiModelProperty(name = "异常处理")
|
|
|
- @ExcelProperty(name = "异常处理", width = 30, index = 12)
|
|
|
+ @ExcelProperty(name = "异常处理", width = 30, index = 13)
|
|
|
private Integer exceptionCount;
|
|
|
|
|
|
@ApiModelProperty(name = "是否违纪")
|
|
|
private Integer breachStatus;
|
|
|
|
|
|
@ApiModelProperty(name = "是否违纪")
|
|
|
- @ExcelProperty(name = "违纪", width = 30, index = 14)
|
|
|
+ @ExcelProperty(name = "违纪", width = 30, index = 15)
|
|
|
private String breachStatusStr;
|
|
|
|
|
|
@ApiModelProperty(name = "更新时间")
|
|
|
private Long updateTime;
|
|
|
|
|
|
@ApiModelProperty(name = "科目代码")
|
|
|
- @ExcelProperty(name = "科目代码", width = 30, index = 8)
|
|
|
+ @ExcelProperty(name = "科目代码", width = 30, index = 9)
|
|
|
private String courseCode;
|
|
|
|
|
|
@ApiModelProperty(name = "联系电话")
|
|
|
- @ExcelProperty(name = "联系电话", width = 30, index = 7)
|
|
|
+ @ExcelProperty(name = "联系电话", width = 30, index = 8)
|
|
|
private String mobileNumber;
|
|
|
|
|
|
+ public String getClassNo() {
|
|
|
+ return classNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setClassNo(String classNo) {
|
|
|
+ this.classNo = classNo;
|
|
|
+ }
|
|
|
+
|
|
|
public String getBreachStatusStr() {
|
|
|
if (Objects.nonNull(breachStatus)) {
|
|
|
return breachStatus.intValue() == 1 ? "正常" : "违纪";
|