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