| | |
| | | @Data |
| | | @ColumnWidth(25) |
| | | @HeadRowHeight(20) |
| | | @ContentRowHeight(125) |
| | | @ContentRowHeight(100) |
| | | public class ExportSecurityPaperExcel implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | |
| | | @ExcelProperty("身份证号码") |
| | | private String idCardNo; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("性别") |
| | | private String sex; |
| | | |
| | | @ColumnWidth(35) |
| | | @ExcelProperty("企业名称") |
| | | private String deptName; |
| | |
| | | private String securityNumber; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("发证日期") |
| | | private String paperTime; |
| | | |
| | | @ColumnWidth(12) |
| | | @ExcelProperty("照片") |
| | | private URL avatar; |
| | | |
| | | @ColumnWidth(20) |
| | | @ColumnWidth(16) |
| | | @ExcelProperty("二维码图片") |
| | | private byte[] qrCode; |
| | | } |