SocialSignOn

This commit is contained in:
MaxKey
2022-04-25 08:52:29 +08:00
parent ba518828f8
commit d3b2f4da64
26 changed files with 156 additions and 94 deletions

View File

@@ -39,6 +39,7 @@ public class AuthJwt implements Serializable {
private String email;
private String instId;
private String instName;
private int passwordSetType;
private List<String> authorities;
@@ -147,6 +148,15 @@ public class AuthJwt implements Serializable {
public void setTicket(String ticket) {
this.ticket = ticket;
}
public int getPasswordSetType() {
return passwordSetType;
}
public void setPasswordSetType(int passwordSetType) {
this.passwordSetType = passwordSetType;
}
@Override
public String toString() {