| | |
| | | */ |
| | | package org.springblade.modules.exam.excel; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.alibaba.excel.annotation.write.style.ColumnWidth; |
| | | import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
| | |
| | | @ExcelProperty("身份证号码") |
| | | private String idCardNo; |
| | | |
| | | @ColumnWidth(50) |
| | | @ExcelProperty("身份证住址") |
| | | private String registered; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("准考证号") |
| | | private String candidateNo; |
| | | |
| | | @ColumnWidth(25) |
| | | @ExcelProperty("所属公司") |
| | | @ExcelProperty("企业名称") |
| | | @ExcelIgnore |
| | | private String companyName; |
| | | |
| | | @ColumnWidth(25) |
| | | @ExcelProperty("从业单位") |
| | | private String unitName; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("考试开始时间") |
| | |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("实操成绩") |
| | | private Integer learnGrade; |
| | | private String learnGrade; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("总成绩") |
| | | private Integer allGrade; |
| | | @ExcelProperty("是否合格") |
| | | private String qualified; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("保安员证编号") |
| | | private String securityNumber; |
| | | } |