|
@@ -2,63 +2,43 @@ package cn.com.qmth.scancloud.tools.model;
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
-import com.alibaba.excel.annotation.ExcelIgnore;
|
|
|
|
-import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
|
-import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
|
|
|
|
|
|
|
-@ColumnWidth(18)
|
|
|
|
public class ExamStudent {
|
|
public class ExamStudent {
|
|
|
|
|
|
- @ExcelIgnore
|
|
|
|
private Long id;// 考生ID
|
|
private Long id;// 考生ID
|
|
|
|
|
|
- @ExcelIgnore
|
|
|
|
private Long examId;// 考试ID
|
|
private Long examId;// 考试ID
|
|
|
|
|
|
- @ExcelProperty("科目代码")
|
|
|
|
private String subjectCode;// 科目代码
|
|
private String subjectCode;// 科目代码
|
|
|
|
|
|
- @ExcelProperty("科目名称")
|
|
|
|
private String subjectName;// 科目名称
|
|
private String subjectName;// 科目名称
|
|
|
|
|
|
- @ExcelProperty("准考证号")
|
|
|
|
private String examNumber;// 准考证号
|
|
private String examNumber;// 准考证号
|
|
|
|
|
|
- @ExcelProperty("考生姓名")
|
|
|
|
private String name;// 考生姓名
|
|
private String name;// 考生姓名
|
|
|
|
|
|
- @ExcelProperty("考生编号")
|
|
|
|
private String studentCode;// 考生编号
|
|
private String studentCode;// 考生编号
|
|
|
|
|
|
- @ExcelProperty("卷袋号")
|
|
|
|
private String packageCode;// 卷袋号
|
|
private String packageCode;// 卷袋号
|
|
|
|
|
|
- @ExcelProperty("座位号")
|
|
|
|
private String seatNumber;// 座位号
|
|
private String seatNumber;// 座位号
|
|
|
|
|
|
private String campusCode;
|
|
private String campusCode;
|
|
|
|
|
|
- @ExcelProperty("学习中心")
|
|
|
|
private String campusName;// 学习中心
|
|
private String campusName;// 学习中心
|
|
|
|
|
|
- @ExcelProperty("考场")
|
|
|
|
private String examSite;// 考场
|
|
private String examSite;// 考场
|
|
|
|
|
|
private String examSiteName;
|
|
private String examSiteName;
|
|
|
|
|
|
- @ExcelProperty("考点")
|
|
|
|
private String examRoom;// 考点
|
|
private String examRoom;// 考点
|
|
|
|
|
|
- @ExcelIgnore
|
|
|
|
private String paperType;// 卷型
|
|
private String paperType;// 卷型
|
|
|
|
|
|
- @ExcelIgnore
|
|
|
|
private List<String> answer;// 客观题作答阅卷数据
|
|
private List<String> answer;// 客观题作答阅卷数据
|
|
|
|
|
|
- @ExcelIgnore
|
|
|
|
private Boolean absent;// 缺考
|
|
private Boolean absent;// 缺考
|
|
|
|
|
|
- @ExcelIgnore
|
|
|
|
private String breachCode;// 违纪
|
|
private String breachCode;// 违纪
|
|
|
|
|
|
public Long getId() {
|
|
public Long getId() {
|