| | |
| | | public class UserExcel implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("租户编号") |
| | | private String tenantId; |
| | | |
| | | @ExcelIgnore |
| | | @ExcelProperty("用户平台") |
| | | private String userType; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("用户平台名称") |
| | | private String userTypeName; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("账户") |
| | | private String account; |
| | | |
| | | @ColumnWidth(10) |
| | | @ExcelProperty("昵称") |
| | | private String name; |
| | | |
| | | @ColumnWidth(10) |
| | | @ExcelProperty("姓名") |
| | | private String realName; |
| | | |
| | | @ExcelProperty("邮箱") |
| | | private String email; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("手机") |
| | | private String phone; |
| | | |
| | | @ExcelIgnore |
| | | @ExcelProperty("角色ID") |
| | | private String roleId; |
| | | |
| | | @ExcelIgnore |
| | | @ExcelProperty("部门ID") |
| | | @ExcelProperty("企业名称*") |
| | | private String deptId; |
| | | |
| | | @ExcelIgnore |
| | | @ExcelProperty("岗位ID") |
| | | private String postId; |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("警号*") |
| | | private String code; |
| | | |
| | | @ExcelProperty("角色名称") |
| | | private String roleName; |
| | | @ColumnWidth(10) |
| | | @ExcelProperty("姓名*") |
| | | private String realName; |
| | | |
| | | @ExcelProperty("部门名称") |
| | | private String deptName; |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("联系电话") |
| | | private String phone; |
| | | |
| | | @ExcelProperty("岗位名称") |
| | | private String postName; |
| | | @ExcelProperty("性别*") |
| | | private String sex; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("生日") |
| | | private Date birthday; |
| | | @ExcelProperty("身份证号*") |
| | | private String cardid; |
| | | |
| | | |
| | | } |