| | |
| | | @NoArgsConstructor |
| | | // @Accessors(chain = true) // 导入不允许使用 会找不到set方法 |
| | | public class SysUserImportVo implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 用户ID |
| | | */ |
| | | @ExcelProperty(value = "用户序号") |
| | | private Long userId; |
| | | /** |
| | | * 用户ID |
| | | */ |
| | | @ExcelProperty(value = "用户序号") |
| | | private Long userId; |
| | | |
| | | /** |
| | | * 部门ID |
| | | */ |
| | | @ExcelProperty(value = "部门编号") |
| | | private Long deptId; |
| | | /** |
| | | * 部门ID |
| | | */ |
| | | @ExcelProperty(value = "部门编号") |
| | | private Long deptId; |
| | | |
| | | /** |
| | | * 用户账号 |
| | | */ |
| | | @ExcelProperty(value = "登录名称") |
| | | private String userName; |
| | | /** |
| | | * 用户账号 |
| | | */ |
| | | @ExcelProperty(value = "登录名称") |
| | | private String userName; |
| | | |
| | | /** |
| | | * 用户昵称 |
| | | */ |
| | | @ExcelProperty(value = "用户名称") |
| | | private String nickName; |
| | | /** |
| | | * 用户昵称 |
| | | */ |
| | | @ExcelProperty(value = "用户名称") |
| | | private String nickName; |
| | | |
| | | /** |
| | | * 用户邮箱 |
| | | */ |
| | | @ExcelProperty(value = "用户邮箱") |
| | | private String email; |
| | | /** |
| | | * 用户邮箱 |
| | | */ |
| | | @ExcelProperty(value = "用户邮箱") |
| | | private String email; |
| | | |
| | | /** |
| | | * 手机号码 |
| | | */ |
| | | @ExcelProperty(value = "手机号码") |
| | | private String phonenumber; |
| | | /** |
| | | * 手机号码 |
| | | */ |
| | | @ExcelProperty(value = "手机号码") |
| | | private String phonenumber; |
| | | |
| | | /** |
| | | * 用户性别 |
| | | */ |
| | | @ExcelProperty(value = "用户性别", converter = ExcelDictConvert.class) |
| | | @ExcelDictFormat(dictType = "sys_user_sex") |
| | | private String sex; |
| | | /** |
| | | * 用户性别 |
| | | */ |
| | | @ExcelProperty(value = "用户性别", converter = ExcelDictConvert.class) |
| | | @ExcelDictFormat(dictType = "sys_user_sex") |
| | | private String sex; |
| | | |
| | | /** |
| | | * 帐号状态(0正常 1停用) |
| | | */ |
| | | @ExcelProperty(value = "帐号状态", converter = ExcelDictConvert.class) |
| | | @ExcelDictFormat(dictType = "sys_common_status") |
| | | private String status; |
| | | /** |
| | | * 帐号状态(0正常 1停用) |
| | | */ |
| | | @ExcelProperty(value = "帐号状态", converter = ExcelDictConvert.class) |
| | | @ExcelDictFormat(dictType = "sys_common_status") |
| | | private String status; |
| | | |
| | | } |