app 用户登录 用户注册
新增 登录过滤器 仅对app作用
This commit is contained in:
@@ -5,6 +5,7 @@ import java.math.BigDecimal;
|
||||
|
||||
public class TbUserInfo implements Serializable {
|
||||
private Integer id;
|
||||
private Integer userId;
|
||||
|
||||
private BigDecimal amount;
|
||||
|
||||
@@ -93,6 +94,7 @@ public class TbUserInfo implements Serializable {
|
||||
private Long bindParentAt;
|
||||
|
||||
private String grandParentId;
|
||||
private String password;
|
||||
|
||||
private String avatar = "";
|
||||
|
||||
@@ -475,4 +477,20 @@ public class TbUserInfo implements Serializable {
|
||||
public void setGrandParentId(String grandParentId) {
|
||||
this.grandParentId = grandParentId == null ? null : grandParentId.trim();
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user