feat(sso): 登录请求新增captchaCode字段

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
liulujian 2026-04-15 15:50:02 +08:00
parent 122692bc8b
commit 460ba0d969

View File

@ -38,6 +38,11 @@ public class AuthLoginReqVO {
@JsonProperty("CaptchaVerification")
private String captchaVerification;
@Schema(description = "用户输入的图形验证码", requiredMode = Schema.RequiredMode.REQUIRED,
example = "Kp7m")
@JsonProperty("CaptchaCode")
private String captchaCode;
// ========== 绑定社交登录时需要传递如下参数 ==========
@Schema(description = "社交平台的类型,参见 SocialTypeEnum 枚举值", requiredMode = Schema.RequiredMode.REQUIRED, example = "10")