| | |
| | | */ |
| | | 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; |
| | |
| | | |
| | | @ColumnWidth(25) |
| | | @ExcelProperty("企业名称") |
| | | @ExcelIgnore |
| | | private String companyName; |
| | | |
| | | @ColumnWidth(25) |
| | | @ExcelProperty("从业单位") |
| | | private String unitName; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("考试开始时间") |
| | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("总成绩") |
| | | private Integer allGrade; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("保安员证编号") |
| | | private String securityNumber; |
| | | } |