SysUser.java 3.5 KB
package com.skua.modules.equipment.entity;

import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.skua.core.aspect.annotation.Dict;
import io.swagger.annotations.ApiModel;
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
@TableName("sys_user")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "sys_user", description = "人员信息")
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 username;

    /**
     * 真实姓名
     */
    @Excel(name = "真实姓名", width = 15)
    private String realname;

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

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

    /**
     * 头像
     */
    @Excel(name = "头像", width = 15)
    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 operatingPost;
    /**
     * 电话
     */
    @Excel(name = "电话", width = 15)
    private String phone;

    /**
     * 职位
     */
    @Excel(name = "职位", width = 15)
    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已删除)
     */
    @Excel(name = "删除状态", width = 15, dicCode = "del_flag")
    @TableLogic
    private String delFlag;

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

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

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

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

    /**
     * 角色
     */
    @Excel(name = "角色", width = 15)
    @TableField(exist = false)
    private String roleName;

    /**
     * is_system_user
     */
    @Excel(name = "is_system_user", width = 15)
    private String isSystemUser;

    /**
     * 机构
     */
    @Excel(name = "机构", width = 15)
    @TableField(exist = false)
    private String departName;

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

    @TableField(exist = false)
    private String areaId;

    @TableField(exist = false)
    private String factoryId;

    @TableField(exist = false)
    private String roleId;

    private String cid;
}