登录部分

This commit is contained in:
2024-06-22 11:26:07 +08:00
parent 941c33ea7a
commit d86463155d
3 changed files with 29 additions and 9 deletions

View File

@@ -13,6 +13,7 @@ public class AuthUserDto {
private String password;
private String code;
private String opencode;
private String uuid = "";
@@ -47,4 +48,12 @@ public class AuthUserDto {
public void setUuid(String uuid) {
this.uuid = uuid;
}
public String getOpencode() {
return opencode;
}
public void setOpencode(String opencode) {
this.opencode = opencode;
}
}