mirror of
https://gitee.com/bookshelfplus/bookshelfplus
synced 2025-09-21 01:10:39 +08:00
第三方登录回调后登陆系统用户逻辑基本完成
This commit is contained in:
@@ -17,7 +17,7 @@ public class ThirdPartyUserAuthDO {
|
||||
*
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String userId;
|
||||
private Integer userId;
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -26,7 +26,7 @@ public class ThirdPartyUserAuthDO {
|
||||
*
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String thirdPartyUserId;
|
||||
private Integer thirdPartyUserId;
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
@@ -60,7 +60,7 @@ public class ThirdPartyUserAuthDO {
|
||||
*
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getUserId() {
|
||||
public Integer getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
@@ -72,8 +72,8 @@ public class ThirdPartyUserAuthDO {
|
||||
*
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId == null ? null : userId.trim();
|
||||
public void setUserId(Integer userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -84,7 +84,7 @@ public class ThirdPartyUserAuthDO {
|
||||
*
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getThirdPartyUserId() {
|
||||
public Integer getThirdPartyUserId() {
|
||||
return thirdPartyUserId;
|
||||
}
|
||||
|
||||
@@ -96,7 +96,7 @@ public class ThirdPartyUserAuthDO {
|
||||
*
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setThirdPartyUserId(String thirdPartyUserId) {
|
||||
this.thirdPartyUserId = thirdPartyUserId == null ? null : thirdPartyUserId.trim();
|
||||
public void setThirdPartyUserId(Integer thirdPartyUserId) {
|
||||
this.thirdPartyUserId = thirdPartyUserId;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user