| | |
| | | private String userTypeName; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("员工编号") |
| | | private String code; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("账户") |
| | | private String account; |
| | | |
| | |
| | | @ExcelProperty("生日") |
| | | private Date birthday; |
| | | |
| | | /** |
| | | * 身份证号码 |
| | | */ |
| | | @ColumnWidth(50) |
| | | @ExcelProperty("身份证号码") |
| | | private String cardNo; |
| | | |
| | | /** |
| | | * 学历 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("学历") |
| | | private String educationBackground; |
| | | |
| | | /** |
| | | * 入职时间 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("入职时间") |
| | | private Date entryJobTime; |
| | | /** |
| | | * 合伙人等级 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("合伙人等级") |
| | | private String employeeType; |
| | | |
| | | } |