| 1234567891011121314151617181920212223 |
- package com.zd.gateway.service;
- import java.io.IOException;
- import com.zd.common.core.exception.CaptchaException;
- import com.zd.model.domain.AjaxResult;
- /**
- * 验证码处理
- *
- * @author zd
- */
- public interface ValidateCodeService {
- /**
- * 生成验证码
- */
- AjaxResult createCapcha() throws IOException, CaptchaException;
- /**
- * 校验验证码
- */
- void checkCapcha(String key, String value) throws CaptchaException;
- }
|