| | |
| | | public class UserExcel implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | // @ColumnWidth(15) |
| | | // @ExcelProperty("账号") |
| | | // private String account; |
| | | |
| | | @ExcelProperty("单位名称") |
| | | @ExcelProperty("企业名称*") |
| | | private String deptId; |
| | | |
| | | @ColumnWidth(10) |
| | | @ExcelProperty("姓名") |
| | | private String realName; |
| | | // @ColumnWidth(15) |
| | | // @ExcelProperty("警号*") |
| | | // private String code; |
| | | |
| | | @ExcelProperty("邮箱") |
| | | private String email; |
| | | @ColumnWidth(10) |
| | | @ExcelProperty("姓名*") |
| | | private String realName; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("联系电话") |
| | | private String phone; |
| | | |
| | | |
| | | @ExcelProperty("性别") |
| | | @ExcelProperty("性别*") |
| | | private String sex; |
| | | |
| | | // @ExcelProperty("出生日期") |
| | | // private Date birthday; |
| | | |
| | | @ExcelProperty("身份证号") |
| | | @ExcelProperty("身份证号*") |
| | | private String cardid; |
| | | |
| | | @ExcelProperty("籍贯") |
| | | private String nativeplace; |
| | | |
| | | @ExcelProperty("民族") |
| | | private String nation; |
| | | |
| | | @ExcelProperty("政治面貌") |
| | | private String politicaloutlook; |
| | | |
| | | |
| | | @ExcelProperty("身高") |
| | | private Integer height; |
| | | |
| | | |
| | | @ExcelProperty("联系地址") |
| | | private String address; |
| | | |
| | | @ExcelProperty("户口所在地") |
| | | private String registered; |
| | | |
| | | @ExcelProperty("入职时间") |
| | | private String rtime; |
| | | |
| | | @ExcelProperty("是否持证") |
| | | private String hold; |
| | | |
| | | @ExcelProperty("保安员证编码") |
| | | private String securitynumber; |
| | | |
| | | // @ExcelProperty("人员状态") |
| | | // private String status; |
| | | |
| | | |
| | | } |