13693261870
2024-08-19 ed3b0610615e3c4e760e771cfe0f67ace5ee7f01
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.se.gateway.service;
 
import java.io.IOException;
import com.se.common.core.exception.CaptchaException;
import com.se.common.core.web.domain.AjaxResult;
 
/**
 * 验证码处理
 *
 * @author admin
 */
public interface ValidateCodeService
{
    /**
     * 生成验证码
     */
    public AjaxResult createCaptcha() throws IOException, CaptchaException;
 
    /**
     * 校验验证码
     */
    public void checkCaptcha(String key, String value) throws CaptchaException;
}