123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- package org.jeecg.common.system.vo;
- import java.util.Date;
- import org.springframework.format.annotation.DateTimeFormat;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- /**
- * <p>
- * 在线用户信息
- * </p>
- *
- * @Author scott
- * @since 2018-12-20
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- public class LoginUser {
- /**
- * 登录人id
- */
- private String id;
- /**
- * 登录人账号
- */
- private String username;
- /**
- * 登录人名字
- */
- private String realname;
- /**
- * 登录人密码
- */
- private String password;
- /**
- * 当前登录部门code
- */
- private String orgCode;
- /**
- * 头像
- */
- private String avatar;
- /**
- * 生日
- */
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
- @DateTimeFormat(pattern = "yyyy-MM-dd")
- private Date birthday;
- /**
- * 性别(1:男 2:女)
- */
- private Integer sex;
- /**
- * 电子邮件
- */
- private String email;
- /**
- * 电话
- */
- private String phone;
- /**
- * 状态(1:正常 2:冻结 )
- */
- private Integer status;
-
- private Integer delFlag;
- /**
- * 同步工作流引擎1同步0不同步
- */
- private Integer activitiSync;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 身份(1 普通员工 2 上级)
- */
- private Integer userIdentity;
- /**
- * 管理部门ids
- */
- private String departIds;
- /**
- * 职务,关联职务表
- */
- private String post;
- /**
- * 座机号
- */
- private String telephone;
- /**多租户id配置,编辑用户的时候设置*/
- private String relTenantIds;
- /**设备id uniapp推送用*/
- private String clientId;
- }
|