perf:调整授权登录

This commit is contained in:
曾文豪
2023-01-11 15:34:15 +08:00
parent 603b5abdfe
commit b49e736f0d
8 changed files with 155 additions and 60 deletions

View File

@@ -0,0 +1,36 @@
package com.tiesheng.login.pojos;
public class CodeExtraDTO {
private String code;
private String extra;
private String to;
///////////////////////////////////////////////////////////////////////////
// setter\getter
///////////////////////////////////////////////////////////////////////////
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getExtra() {
return extra;
}
public void setExtra(String extra) {
this.extra = extra;
}
public String getTo() {
return to;
}
public void setTo(String to) {
this.to = to;
}
}