feat(sso): add captcha methods to VerifyService interface

Add getCaptcha and checkCaptcha methods for graphic captcha support
in login verification flow.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
liulujian 2026-04-15 15:26:01 +08:00
parent ae3c041745
commit 3fa6747c10

View File

@ -1,6 +1,7 @@
package com.css.txw.sso.service.verify; package com.css.txw.sso.service.verify;
import com.css.ggzc.framework.common.pojo.CommonResult; import com.css.ggzc.framework.common.pojo.CommonResult;
import java.util.Map;
public interface VerifyService { public interface VerifyService {
@ -8,6 +9,7 @@ public interface VerifyService {
Boolean checkVerifyToken(String verifyToken); Boolean checkVerifyToken(String verifyToken);
CommonResult<Map<String, String>> getCaptcha(String remoteId);
Boolean checkCaptcha(String uuid, String code);
} }