mirror of https://github.com/elunez/eladmin
25 lines
454 B
Java
25 lines
454 B
Java
package me.zhengjie.service;
|
|
|
|
import me.zhengjie.domain.VerificationCode;
|
|
import me.zhengjie.domain.vo.EmailVo;
|
|
|
|
/**
|
|
* @author Zheng Jie
|
|
* @date 2018-12-26
|
|
*/
|
|
public interface VerificationCodeService {
|
|
|
|
/**
|
|
* 发送邮件验证码
|
|
* @param code 验证码
|
|
* @return EmailVo
|
|
*/
|
|
EmailVo sendEmail(VerificationCode code);
|
|
|
|
/**
|
|
* 验证
|
|
* @param code 验证码
|
|
*/
|
|
void validated(VerificationCode code);
|
|
}
|