123456789101112131415161718192021222324 |
- package com.szwl.service;
- import com.szwl.model.entity.TMessageCode;
- import com.szwl.service.base.MyIService;
- /**
- * <p>
- * 短信验证码 服务类
- * </p>
- *
- * @author wuhs
- * @since 2022-04-14
- */
- public interface TMessageCodeService extends MyIService<TMessageCode> {
- /*
- * 发送短信验证码
- * */
- String sentMessage(String type, String phone);
- /*
- * 发送邮箱验证码
- * */
- String sentEmail(String type, String email);
- }
|