|
@@ -2,63 +2,43 @@ package cn.com.qmth.scancloud.tools.model;
|
|
|
|
|
|
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 {
|
|
|
|
|
|
- @ExcelIgnore
|
|
|
private Long id;
|
|
|
|
|
|
- @ExcelIgnore
|
|
|
private Long examId;
|
|
|
|
|
|
- @ExcelProperty("科目代码")
|
|
|
private String subjectCode;
|
|
|
|
|
|
- @ExcelProperty("科目名称")
|
|
|
private String subjectName;
|
|
|
|
|
|
- @ExcelProperty("准考证号")
|
|
|
private String examNumber;
|
|
|
|
|
|
- @ExcelProperty("考生姓名")
|
|
|
private String name;
|
|
|
|
|
|
- @ExcelProperty("考生编号")
|
|
|
private String studentCode;
|
|
|
|
|
|
- @ExcelProperty("卷袋号")
|
|
|
private String packageCode;
|
|
|
|
|
|
- @ExcelProperty("座位号")
|
|
|
private String seatNumber;
|
|
|
|
|
|
private String campusCode;
|
|
|
|
|
|
- @ExcelProperty("学习中心")
|
|
|
private String campusName;
|
|
|
|
|
|
- @ExcelProperty("考场")
|
|
|
private String examSite;
|
|
|
|
|
|
private String examSiteName;
|
|
|
|
|
|
- @ExcelProperty("考点")
|
|
|
private String examRoom;
|
|
|
|
|
|
- @ExcelIgnore
|
|
|
private String paperType;
|
|
|
|
|
|
- @ExcelIgnore
|
|
|
private List<String> answer;
|
|
|
|
|
|
- @ExcelIgnore
|
|
|
private Boolean absent;
|
|
|
|
|
|
- @ExcelIgnore
|
|
|
private String breachCode;
|
|
|
|
|
|
public Long getId() {
|