package com.szwl.service; import com.szwl.model.entity.TMessageCode; import com.szwl.service.base.MyIService; /** *

* 短信验证码 服务类 *

* * @author wuhs * @since 2022-04-14 */ public interface TMessageCodeService extends MyIService { /* * 发送短信验证码 * */ String sentMessage(String type, String phone); /* * 发送邮箱验证码 * */ String sentEmail(String type, String email); }