| | |
| | | */ |
| | | package org.springblade.modules.sms.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.sms.dto.SmsTemplateDTO; |
| | | import org.springblade.modules.sms.entity.SmsTemplateEntity; |
| | | import org.springblade.modules.sms.vo.SmsTemplateVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 短信模版表 服务类 |
| | |
| | | * |
| | | * @return |
| | | */ |
| | | Boolean smsSend(String phone); |
| | | Boolean sendVerificationCode(String phone); |
| | | |
| | | |
| | | Boolean sendNotice(Long templateId,Long residenceId); |
| | | |
| | | Boolean sendRectificationNotice(Long templateId,Long placeSelfCheckId); |
| | | |
| | | Boolean loginSendVerificationCode(String phone); |
| | | |
| | | String checkCode(String phone, String code); |
| | | } |