package com.mzl.flower.entity.system; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.mzl.flower.base.BaseEntity; import lombok.Data; @Data @TableName("t_user") public class User extends BaseEntity { @TableField("login_name") private String loginName;//账号 @TableField("tel") private String tel;//手机号 @TableField("nick_name") private String nickName;//昵称 @TableField("picture") private String picture;//头像 @TableField("password") private String password;//密码 @TableField("type") private String type;//账号类型 @TableField("status") private String status;//状态 @TableField("IS_SYS") private String isSys;//是否系统用户 @TableField("third_id") private String thirdId; @TableField("vip_grade") private String vipGrade; }