|
@@ -25,28 +25,32 @@ public class ExamAuditExcel implements JsonSerializable {
|
|
|
private Long examRecordDataId;
|
|
|
@ExcelProperty(name = "学习中心", index = 2)
|
|
|
private String orgName;
|
|
|
- @ExcelProperty(name = "违纪类型", index = 12)
|
|
|
+ @ExcelProperty(name = "违纪类型", index = 13)
|
|
|
private String disciplineType;
|
|
|
@ExcelProperty(name = "批次名称", index = 1)
|
|
|
private String examName;
|
|
|
- @ExcelProperty(name = "学号", index = 6)
|
|
|
+ @ExcelProperty(name = "学号", index = 7)
|
|
|
private String studentCode;
|
|
|
- @ExcelProperty(name = "姓名", index = 7)
|
|
|
+ @ExcelProperty(name = "姓名", index = 8)
|
|
|
private String studentName;
|
|
|
@ExcelProperty(name = "科目代码", index = 4)
|
|
|
private String courseCode;
|
|
|
@ExcelProperty(name = "考试科目", index = 3)
|
|
|
private String courseName;
|
|
|
- @ExcelProperty(name = "课程层次", index = 5)
|
|
|
+ @ExcelProperty(name = "课程层次", index = 6)
|
|
|
private String courseLevel;
|
|
|
- @ExcelProperty(name = "成功次数", index = 9)
|
|
|
+ @ExcelProperty(name = "成功次数", index = 10)
|
|
|
private Integer faceSuccessCount;
|
|
|
- @ExcelProperty(name = "陌生人记录", index = 10)
|
|
|
+ @ExcelProperty(name = "陌生人记录", index = 11)
|
|
|
private Integer faceStrangerCount;
|
|
|
- @ExcelProperty(name = "校验次数", index = 8)
|
|
|
+ @ExcelProperty(name = "校验次数", index = 9)
|
|
|
private Integer faceTotalCount;
|
|
|
- @ExcelProperty(name = "成功率", index = 11)
|
|
|
+ @ExcelProperty(name = "成功率", index = 12)
|
|
|
private Double faceSuccessPercent;
|
|
|
+ @ExcelProperty(name = "客观题总分", index = 5)
|
|
|
+ private Double objectiveScore;
|
|
|
+ @ExcelProperty(name = "违纪描述", index = 14)
|
|
|
+ private String disciplineDetail;
|
|
|
|
|
|
public Long getExamRecordDataId() {
|
|
|
return examRecordDataId;
|
|
@@ -151,4 +155,20 @@ public class ExamAuditExcel implements JsonSerializable {
|
|
|
public void setOrgName(String orgName) {
|
|
|
this.orgName = orgName;
|
|
|
}
|
|
|
+
|
|
|
+ public String getDisciplineDetail() {
|
|
|
+ return disciplineDetail;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDisciplineDetail(String disciplineDetail) {
|
|
|
+ this.disciplineDetail = disciplineDetail;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getObjectiveScore() {
|
|
|
+ return objectiveScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setObjectiveScore(Double objectiveScore) {
|
|
|
+ this.objectiveScore = objectiveScore;
|
|
|
+ }
|
|
|
}
|