|
@@ -32,17 +32,19 @@ public class ExamAuditInfo implements JsonSerializable {
|
|
|
/**
|
|
|
* 审核状态
|
|
|
*/
|
|
|
+ @ExcelProperty(name = "审核结果", width = 30, index = 13)
|
|
|
private String status;
|
|
|
/**
|
|
|
* 违纪详情
|
|
|
*/
|
|
|
private String disciplineDetail;
|
|
|
|
|
|
+ @ExcelProperty(name = "审核说明", width = 30, index = 12)
|
|
|
private String disciplineType;
|
|
|
/**
|
|
|
* 审核人姓名
|
|
|
*/
|
|
|
- @ExcelProperty(name = "考试记录id", width = 30, index = 4)
|
|
|
+ @ExcelProperty(name = "审核人", width = 30, index = 14)
|
|
|
private String auditUserName;
|
|
|
|
|
|
/**
|
|
@@ -68,17 +70,17 @@ public class ExamAuditInfo implements JsonSerializable {
|
|
|
/**
|
|
|
* 学号
|
|
|
*/
|
|
|
- @ExcelProperty(name = "考试记录id", width = 30, index = 4)
|
|
|
+ @ExcelProperty(name = "学号", width = 30, index = 4)
|
|
|
private String studentCode;
|
|
|
/**
|
|
|
* 学生姓名
|
|
|
*/
|
|
|
- @ExcelProperty(name = "考试记录id", width = 30, index = 2)
|
|
|
+ @ExcelProperty(name = "姓名", width = 30, index = 2)
|
|
|
private String studentName;
|
|
|
/**
|
|
|
* 身份证号
|
|
|
*/
|
|
|
- @ExcelProperty(name = "考试记录id", width = 30, index = 3)
|
|
|
+ @ExcelProperty(name = "身份证号", width = 30, index = 3)
|
|
|
private String identityNumber;
|
|
|
/**
|
|
|
* 课程ID
|
|
@@ -91,12 +93,12 @@ public class ExamAuditInfo implements JsonSerializable {
|
|
|
/**
|
|
|
* 课程名称
|
|
|
*/
|
|
|
- @ExcelProperty(name = "考试记录id", width = 30, index = 5)
|
|
|
+ @ExcelProperty(name = "课程", width = 30, index = 5)
|
|
|
private String courseName;
|
|
|
/**
|
|
|
* 课程层次
|
|
|
*/
|
|
|
- @ExcelProperty(name = "考试记录id", width = 30, index = 6)
|
|
|
+ @ExcelProperty(name = "课程层次", width = 30, index = 6)
|
|
|
private String courseLevel;
|
|
|
/**
|
|
|
* 学习中心ID
|
|
@@ -129,7 +131,7 @@ public class ExamAuditInfo implements JsonSerializable {
|
|
|
/**
|
|
|
* 第几次考试
|
|
|
*/
|
|
|
- @ExcelProperty(name = "考试记录id", width = 30, index = 11)
|
|
|
+ @ExcelProperty(name = "考试次数", width = 30, index = 11)
|
|
|
private Integer examOrder;
|
|
|
/**
|
|
|
* 是否为重考
|
|
@@ -146,7 +148,7 @@ public class ExamAuditInfo implements JsonSerializable {
|
|
|
/**
|
|
|
* 抓拍比对成功次数
|
|
|
*/
|
|
|
- @ExcelProperty(name = "考试记录id", width = 30, index = 8)
|
|
|
+ @ExcelProperty(name = "成功次数", width = 30, index = 8)
|
|
|
private Integer faceSuccessCount;
|
|
|
/**
|
|
|
* 抓拍比对失败次数
|
|
@@ -155,16 +157,17 @@ public class ExamAuditInfo implements JsonSerializable {
|
|
|
/**
|
|
|
* 抓拍存在陌生人的次数
|
|
|
*/
|
|
|
- @ExcelProperty(name = "考试记录id", width = 30, index = 9)
|
|
|
+ @ExcelProperty(name = "陌生人记录", width = 30, index = 9)
|
|
|
private Integer faceStrangerCount;
|
|
|
/**
|
|
|
* 抓拍比对总次数
|
|
|
*/
|
|
|
- @ExcelProperty(name = "考试记录id", width = 30, index = 7)
|
|
|
+ @ExcelProperty(name = "校验次数", width = 30, index = 7)
|
|
|
private Integer faceTotalCount;
|
|
|
/**
|
|
|
* 抓拍比对成功比率
|
|
|
*/
|
|
|
+ @ExcelProperty(name = "人脸识别成功率(%)", width = 30, index = 10)
|
|
|
private Double faceSuccessPercent;
|
|
|
/**
|
|
|
* 活体检测结果
|