|
@@ -28,7 +28,7 @@ public class ExamScoreInfo implements JsonSerializable {
|
|
/**
|
|
/**
|
|
* 考试名称
|
|
* 考试名称
|
|
*/
|
|
*/
|
|
- @ExcelProperty(name = "批次名称", width = 30, index = 10)
|
|
|
|
|
|
+ @ExcelProperty(name = "批次名称", width = 30, index = 11)
|
|
private String examName;
|
|
private String examName;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -62,12 +62,13 @@ public class ExamScoreInfo implements JsonSerializable {
|
|
/**
|
|
/**
|
|
* 课程Code
|
|
* 课程Code
|
|
*/
|
|
*/
|
|
- @ExcelProperty(name = "课程代码", width = 30, index = 9)
|
|
|
|
|
|
+ @ExcelProperty(name = "课程代码", width = 30, index = 8)
|
|
private String courseCode;
|
|
private String courseCode;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 课程名称
|
|
* 课程名称
|
|
*/
|
|
*/
|
|
|
|
+ @ExcelProperty(name = "课程名称", width = 30, index = 9)
|
|
private String courseName;
|
|
private String courseName;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -79,7 +80,7 @@ public class ExamScoreInfo implements JsonSerializable {
|
|
/**
|
|
/**
|
|
* 课程名称(课程代码)
|
|
* 课程名称(课程代码)
|
|
*/
|
|
*/
|
|
- @ExcelProperty(name = "课程名称(课程代码)", width = 30, index = 8)
|
|
|
|
|
|
+ @ExcelProperty(name = "课程名称(课程代码)", width = 30, index = 10)
|
|
private String courseNameAndCode;
|
|
private String courseNameAndCode;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -116,58 +117,58 @@ public class ExamScoreInfo implements JsonSerializable {
|
|
private String isFinished;
|
|
private String isFinished;
|
|
|
|
|
|
|
|
|
|
- @ExcelProperty(name = "是否缺考", width = 30, index = 13)
|
|
|
|
|
|
+ @ExcelProperty(name = "是否缺考", width = 30, index = 14)
|
|
private String isAbsent;
|
|
private String isAbsent;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 最终成绩
|
|
* 最终成绩
|
|
*/
|
|
*/
|
|
- @ExcelProperty(name = "考试最终成绩", width = 30, index = 17)
|
|
|
|
|
|
+ @ExcelProperty(name = "考试最终成绩", width = 30, index = 18)
|
|
private String finalExamScore;
|
|
private String finalExamScore;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 客观题得分总分
|
|
* 客观题得分总分
|
|
*/
|
|
*/
|
|
- @ExcelProperty(name = "客观题得分", width = 30, index = 15)
|
|
|
|
|
|
+ @ExcelProperty(name = "客观题得分", width = 30, index = 16)
|
|
private String objectiveScore;
|
|
private String objectiveScore;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 主观题得分总分
|
|
* 主观题得分总分
|
|
*/
|
|
*/
|
|
- @ExcelProperty(name = "主观题得分", width = 30, index = 16)
|
|
|
|
|
|
+ @ExcelProperty(name = "主观题得分", width = 30, index = 17)
|
|
private String subjectiveScore;
|
|
private String subjectiveScore;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 违纪次数
|
|
* 违纪次数
|
|
*/
|
|
*/
|
|
- @ExcelProperty(name = "违纪次数", width = 30, index = 11)
|
|
|
|
|
|
+ @ExcelProperty(name = "违纪次数", width = 30, index = 12)
|
|
private String disciplineCount;
|
|
private String disciplineCount;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 正常提交试卷次数
|
|
* 正常提交试卷次数
|
|
*/
|
|
*/
|
|
- @ExcelProperty(name = "正常提交试卷次数", width = 30, index = 12)
|
|
|
|
|
|
+ @ExcelProperty(name = "正常提交试卷次数", width = 30, index = 13)
|
|
private String submitCount;
|
|
private String submitCount;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 考试开始时间
|
|
* 考试开始时间
|
|
*/
|
|
*/
|
|
- @ExcelProperty(name = "成绩统计时间", width = 31, index = 14)
|
|
|
|
|
|
+ @ExcelProperty(name = "成绩统计时间", width = 31, index = 15)
|
|
private String startTime;
|
|
private String startTime;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 剩余考试次数
|
|
* 剩余考试次数
|
|
*/
|
|
*/
|
|
- @ExcelProperty(name = "剩余考试次数", width = 31, index = 19)
|
|
|
|
|
|
+ @ExcelProperty(name = "剩余考试次数", width = 31, index = 20)
|
|
private Long leftExamTimes;
|
|
private Long leftExamTimes;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 采集人
|
|
* 采集人
|
|
*/
|
|
*/
|
|
- @ExcelProperty(name = "采集人", width = 30, index = 18)
|
|
|
|
|
|
+ @ExcelProperty(name = "采集人", width = 30, index = 19)
|
|
private String infoCollector;
|
|
private String infoCollector;
|
|
|
|
|
|
- @ExcelProperty(name = "场次", width = 30, index = 20)
|
|
|
|
|
|
+ @ExcelProperty(name = "场次", width = 30, index = 21)
|
|
private String examStage;
|
|
private String examStage;
|
|
|
|
|
|
private Long examStageId;
|
|
private Long examStageId;
|