SysUser.java 3.4 KB
package com.skua.modules.system.entity;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.skua.core.aspect.annotation.Dict;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat;

import java.io.Serializable;
import java.util.Date;

/**
 * 用户表
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
public class SysUser implements Serializable {

    private static final long serialVersionUID = 1L;

    /**
     * id
     */
    @TableId(type = IdType.UUID)
    private String id;

    /**
     * 真实姓名
     */
    @Excel(name = "用户名称", width = 15)
    private String realname;
    /**
     * 登录账号
     */
    @Excel(name = "用户账号", width = 15)
    private String username;

    /**
     * 密码
     */
    private String password;

    /**
     * md5密码盐
     */
    private String salt;

    /**
     * 头像
     */
    private String avatar;

    /**
     * 生日
     */
    @Excel(name = "生日", width = 15, format = "yyyy-MM-dd")
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date birthday;

    /**
     * 性别(1:男 2:女)
     */
    @Excel(name = "用户性别", width = 15,dicCode="sex")
    @Dict(dicCode = "sex")
    private Integer sex;

    /**
     * 电子邮件
     */
    @Excel(name = "电子邮件", width = 15)
    private String email;

    /**
     * 电话
     */
    @Excel(name = "手机号码", width = 15)
    private String phone;

    /**
     * 职位
     */
    private String positions;

    /**
     * 部门code
     */
    private String orgCode;

    /**
     * 状态(1:正常  2:冻结 )
     */
    @Excel(name = "状态", width = 15,dicCode="user_status")
    @Dict(dicCode = "user_status")
    private Integer status;

    /**
     * 是否加入绩效体检(y:加入  n:不加入 )
     */
    @Dict(dicCode = "isCheckup")
    private String isCheckup;

    /**
     * 删除状态(0,正常,1已删除)
     */
    private String delFlag;

    /**
     * 创建人
     */
    private String createBy;

    /**
     * 创建时间
     */
    private Date createTime;

    /**
     * 更新人
     */
    private String updateBy;

    /**
     * 更新时间
     */
    private Date updateTime;
    /**
     * 同步工作流引擎1同步0不同步
     */
    private String activitiSync;

    /**
     * 角色
     */
    @TableField(exist = false)
    private String roleName;

    /**
     * is_system_user
     */
    private String isSystemUser;

    /**
     * 用户类型,1:管理员,2:普通用户
     */
    private String userType;

    /**
     * 机构
     */
    @TableField(exist = false)
    private String departName;

    @TableField(exist = false)
    private String[] departIds;

    @TableField(exist = false)
    private String areaId;

    @TableField(exist = false)
    private String departId;

    @TableField(exist = false)
    private String roleId;

    private String cid;

    private String remark;
    
    /**
     * 	数字孪生像素流地址
     */
    private String pixelStreamPath;
}