| | |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * TrainingRegistrationExcel |
| | | * @author zhongrj |
| | | * @since 2021-08-12 |
| | | * @since 2021-12-09 |
| | | */ |
| | | @Data |
| | | @ColumnWidth(25) |
| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ColumnWidth(25) |
| | | @ExcelProperty("培训机构名称") |
| | | @ExcelProperty("所属企业名称") |
| | | private String deptName; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("姓名") |
| | | private String realName; |
| | | |
| | | // @ColumnWidth(25) |
| | | // @ExcelProperty("考试名称") |
| | | // private String trainExamName; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("准考证号") |
| | | private String candidateNo; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("身份证号") |
| | | private String idCardNo; |
| | | |
| | | // @ColumnWidth(20) |
| | | // @ExcelProperty("报名时间") |
| | | // private Date trainingTime; |
| | | // |
| | | // @ColumnWidth(20) |
| | | // @ExcelProperty("考试时间") |
| | | // private Date trainExamTime; |
| | | // |
| | | // @ColumnWidth(15) |
| | | // @ExcelProperty("审核状态") |
| | | // private String auditStatus; |
| | | // |
| | | // @ColumnWidth(15) |
| | | // @ExcelProperty("考试状态") |
| | | // private String isExam; |
| | | } |