31 lines
1.1 KiB
Java
31 lines
1.1 KiB
Java
package vvpkassistant.User.model.DTO;
|
||
|
||
import com.baomidou.mybatisplus.annotation.IdType;
|
||
import com.baomidou.mybatisplus.annotation.TableId;
|
||
import lombok.Data;
|
||
|
||
@Data
|
||
|
||
public class UserModelDTO {
|
||
@TableId(type = IdType.AUTO)
|
||
private Integer id; // 主键
|
||
private String nickName; // 昵称
|
||
private String phoneNumber; // 手机号码
|
||
private String headerIcon; // 头像
|
||
private String openid; // openid
|
||
private String sessionKey; // session key
|
||
private Integer status; // 用户状态 0 正常 其他业务逻辑待定
|
||
private Long createTime; // 创建时间
|
||
private String userChatId; // 聊天使用的id,使用微信的openid作为标识
|
||
private Integer points; // 用户积分
|
||
private Integer inviterId; // 邀请人id
|
||
private String email;
|
||
private String newPassword;
|
||
private String confirmPassword;
|
||
private String oldPassword;
|
||
private String password;
|
||
private String token;
|
||
private String userName;
|
||
private String userNameOrEmail;
|
||
}
|