123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- package com.zhentao.user.domain;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Data;
- /**
- * 用户
- * @TableName user_login
- */
- @TableName(value ="user_login")
- @Data
- public class UserLogin implements Serializable {
- /**
- * 用户ID
- */
- @TableId
- private Long id;
- /**
- * 账号
- */
- private String userUsername;
- /**
- * 密码
- */
- private String userPassword;
- /**
- * 盐
- */
- private String salt;
- /**
- * 用户昵称
- */
- private String nickName;
- /**
- * 头像图片
- */
- private String avatar;
- /**
- * 用户名称
- */
- private String userName;
- /**
- * 性别1男2女3未知
- */
- private Integer gender;
- /**
- * 个性签名
- */
- private String userIntro;
- /**
- * 手机号
- */
- private String userMobile;
- /**
- * 身份证号
- */
- private String idenNo;
- /**
- * 等级描述
- */
- private String gradeDesc;
- /**
- * 生日
- */
- private Date birthDay;
- /**
- * 月
- */
- private Integer birthMonth;
- /**
- * 日
- */
- private Integer days;
- /**
- * 标签列表
- */
- private String labelList;
- /**
- * 状态1正常0锁定
- */
- private Integer status;
- /**
- * 备注
- */
- private String remark;
- /**
- * 创建时间
- */
- private Date createdTime;
- /**
- * 更新人
- */
- private String updatedBy;
- /**
- * 更新时间
- */
- private Date updatedTime;
- /**
- *
- */
- private String openId;
- /**
- *
- */
- private String sessionKey;
- /**
- *
- */
- private String uniId;
- @TableField(exist = false)
- private static final long serialVersionUID = 1L;
- }
|