| | |
| | | @ColumnWidth(25) |
| | | @HeadRowHeight(20) |
| | | @ContentRowHeight(18) |
| | | public class ExamScoreExcel implements Serializable { |
| | | public class ExamScoreExcel implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | |
| | | @ColumnWidth(25) |
| | | @ExcelProperty("考试名称") |
| | | @ExcelProperty("考试名称*") |
| | | private String examName; |
| | | |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("姓名") |
| | | @ExcelProperty("姓名*") |
| | | private String name; |
| | | |
| | | |
| | | @ColumnWidth(25) |
| | | @ExcelProperty("身份证号码") |
| | | @ExcelProperty("身份证号码*") |
| | | private String idCardNo; |
| | | |
| | | |
| | | // @ColumnWidth(20) |
| | | // @ExcelProperty("准考证号*") |
| | | // private String candidateNo; |
| | | |
| | | // @ColumnWidth(15) |
| | | // @ExcelProperty("理论得分*") |
| | | // private Integer theoryGrade; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("实操得分") |
| | | private Integer learnGrade; |
| | | @ExcelProperty("实操成绩*(合格/不合格)") |
| | | private String learnGrade; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |