11 changed files with 174 additions and 47 deletions
@ -0,0 +1,99 @@ |
|||||
|
package org.dromara.system.domain.vo; |
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonIgnore; |
||||
|
import com.fasterxml.jackson.annotation.JsonProperty; |
||||
|
import io.github.linpeilie.annotations.AutoMapper; |
||||
|
import lombok.Data; |
||||
|
import org.dromara.common.sensitive.annotation.Sensitive; |
||||
|
import org.dromara.common.sensitive.core.SensitiveStrategy; |
||||
|
import org.dromara.common.translation.annotation.Translation; |
||||
|
import org.dromara.common.translation.constant.TransConstant; |
||||
|
import org.dromara.system.domain.SysUser; |
||||
|
|
||||
|
import java.io.Serial; |
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
import java.util.List; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 用户信息视图对象 sys_user |
||||
|
* |
||||
|
* @author Michelle.Chung |
||||
|
*/ |
||||
|
@Data |
||||
|
public class SysUserProVo implements Serializable { |
||||
|
|
||||
|
@Serial |
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 用户ID |
||||
|
*/ |
||||
|
private Long userId; |
||||
|
|
||||
|
/** |
||||
|
* 租户ID |
||||
|
*/ |
||||
|
private String tenantId; |
||||
|
|
||||
|
/** |
||||
|
* 部门ID |
||||
|
*/ |
||||
|
private Long deptId; |
||||
|
|
||||
|
/** |
||||
|
* 用户账号 |
||||
|
*/ |
||||
|
private String userName; |
||||
|
|
||||
|
/** |
||||
|
* 用户昵称 |
||||
|
*/ |
||||
|
private String nickName; |
||||
|
|
||||
|
/** |
||||
|
* 用户类型(sys_user系统用户) |
||||
|
*/ |
||||
|
private String userType; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 手机号码 |
||||
|
*/ |
||||
|
private String phonenumber; |
||||
|
|
||||
|
/** |
||||
|
* 用户性别(0男 1女 2未知) |
||||
|
*/ |
||||
|
private String sex; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 帐号状态(0正常 1停用) |
||||
|
*/ |
||||
|
private String status; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 备注 |
||||
|
*/ |
||||
|
private String remark; |
||||
|
|
||||
|
/** |
||||
|
* 创建时间 |
||||
|
*/ |
||||
|
private Date createTime; |
||||
|
|
||||
|
/** |
||||
|
* 部门名 |
||||
|
*/ |
||||
|
private String deptName; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 平台名称 |
||||
|
*/ |
||||
|
private String productName; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue