登录注册、手机号、邮箱

This commit is contained in:
2025-11-03 13:37:55 +08:00
parent 16754b527e
commit 35aee59178
26 changed files with 4292 additions and 163 deletions

View File

@@ -51,6 +51,13 @@ public class LoginParam {
*/
private String captcha;
/**
* @description 验证码SessionID用于验证验证码
* @author yslg
* @since 2025-11-03
*/
private String captchaId;
/**
* @description 登录类型 (email/username/phone/wechat)
* @author yslg
@@ -173,6 +180,24 @@ public class LoginParam {
this.captcha = captcha;
}
/**
* @description 获取验证码SessionID
* @author yslg
* @since 2025-11-03
*/
public String getCaptchaId() {
return captchaId;
}
/**
* @description 设置验证码SessionID
* @author yslg
* @since 2025-11-03
*/
public void setCaptchaId(String captchaId) {
this.captchaId = captchaId;
}
/**
* @description 获取登录类型
* @author yslg