若依
2022-02-10 5800ac6b9e21adf158c6ab9082e3f6dffd5a59f4
ruoyi-gateway/src/main/java/com/ruoyi/gateway/service/ValidateCodeService.java
@@ -6,7 +6,7 @@
/**
 * 验证码处理
 *
 *
 * @author ruoyi
 */
public interface ValidateCodeService
@@ -14,10 +14,10 @@
    /**
     * 生成验证码
     */
    public AjaxResult createCapcha() throws IOException, CaptchaException;
    public AjaxResult createCaptcha() throws IOException, CaptchaException;
    /**
     * 校验验证码
     */
    public void checkCapcha(String key, String value) throws CaptchaException;
    public void checkCaptcha(String key, String value) throws CaptchaException;
}