| | |
| | | public class SecurityPaperExcel implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ExcelProperty("企业名称*") |
| | | @ExcelProperty("编号*") |
| | | @ColumnWidth(30) |
| | | private String deptId; |
| | | private String id; |
| | | |
| | | @ColumnWidth(10) |
| | | @ExcelProperty("姓名*") |
| | | private String realName; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("联系电话*") |
| | | private String phone; |
| | | |
| | | @ExcelProperty("身份证号*") |
| | | @ColumnWidth(20) |
| | | private String cardid; |
| | | |
| | | @ExcelProperty("身份证住址*") |
| | | private String registered; |
| | | // @ColumnWidth(15) |
| | | // @ExcelProperty("联系电话*") |
| | | // private String phone; |
| | | // |
| | | // @ExcelProperty("身份证号*") |
| | | // @ColumnWidth(20) |
| | | // private String cardid; |
| | | // |
| | | // @ExcelProperty("身份证住址*") |
| | | // private String registered; |
| | | |
| | | |
| | | } |