| | |
| | | public class UserExcel implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("账号") |
| | | private String account; |
| | | // @ColumnWidth(15) |
| | | // @ExcelProperty("账号") |
| | | // private String account; |
| | | |
| | | @ExcelProperty("单位名称") |
| | | private String deptId; |
| | |
| | | private String email; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("手机") |
| | | @ExcelProperty("联系电话") |
| | | private String phone; |
| | | |
| | | |
| | | @ExcelProperty("性别") |
| | | private String sex; |
| | | |
| | | @ExcelProperty("出生日期") |
| | | private Date birthday; |
| | | // @ExcelProperty("出生日期") |
| | | // private Date birthday; |
| | | |
| | | @ExcelProperty("身份证") |
| | | @ExcelProperty("身份证号") |
| | | private String cardid; |
| | | |
| | | @ExcelProperty("籍贯") |
| | |
| | | |
| | | |
| | | @ExcelProperty("身高") |
| | | private Float height; |
| | | private Integer height; |
| | | |
| | | |
| | | @ExcelProperty("联系地址") |
| | |
| | | @ExcelProperty("保安员证编码") |
| | | private String securitynumber; |
| | | |
| | | @ExcelProperty("人员状态") |
| | | private String status; |
| | | // @ExcelProperty("人员状态") |
| | | // private String status; |
| | | |
| | | |
| | | } |