| | |
| | | package org.springblade.modules.social.excel; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.alibaba.excel.annotation.format.DateTimeFormat; |
| | | import com.alibaba.excel.annotation.write.style.ColumnWidth; |
| | | import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
| | | import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("姓名") |
| | | @ExcelProperty("姓名*") |
| | | private String namb; |
| | | |
| | | @ColumnWidth(10) |
| | | @ExcelProperty("性别") |
| | | @ExcelProperty("性别*") |
| | | private String sex; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("民族") |
| | | private String nation; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("出生日期") |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("出生日期*") |
| | | @DateTimeFormat("yyyy/MM/dd") |
| | | private Date birthday; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("联系电话") |
| | | @ExcelProperty("联系电话*") |
| | | private String telephone; |
| | | |
| | | @ExcelProperty("身份证号") |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("身份证号*") |
| | | private String cardid; |
| | | |
| | | @ColumnWidth(15) |
| | |
| | | @ExcelProperty("户籍性质") |
| | | private String nature; |
| | | |
| | | @ExcelProperty("个人缴费") |
| | | @ExcelProperty("个人缴费*") |
| | | private String amount ; |
| | | |
| | | @ExcelProperty("参保时间") |
| | | @ExcelProperty("参保时间*") |
| | | @DateTimeFormat("yyyy/MM/dd") |
| | | private Date insuredtime; |
| | | |
| | | |
| | | |
| | | } |