package com.ruoyi.system.api.model;
|
|
import java.time.LocalDateTime;
|
|
public class AppUser {
|
private Long userId;
|
|
/**
|
* 用户唯一标识
|
*/
|
private String token;
|
|
/** 账号 */
|
private String accountName;
|
|
/** 手机号 */
|
private String phone;
|
|
/** 状态:1-激活 2-禁用 */
|
private Integer status;
|
|
/** 创建时间 */
|
private Long loginTime;
|
|
/**
|
* 过期时间
|
*/
|
private Long expireTime;
|
|
public Long getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Long userId) {
|
this.userId = userId;
|
}
|
|
public String getAccountName() {
|
return accountName;
|
}
|
|
public void setAccountName(String accountName) {
|
this.accountName = accountName;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public Long getLoginTime() {
|
return loginTime;
|
}
|
|
public void setLoginTime(Long loginTime) {
|
this.loginTime = loginTime;
|
}
|
|
public String getToken() {
|
return token;
|
}
|
|
public void setToken(String token) {
|
this.token = token;
|
}
|
|
public Long getExpireTime() {
|
return expireTime;
|
}
|
|
public void setExpireTime(Long expireTime) {
|
this.expireTime = expireTime;
|
}
|
}
|