1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.sandu.common.sms;
|
| /**
| * @author chenjiantian
| * @date 2021/9/27 15:47
| */
| public interface ISmsSender {
|
|
|
| /**
| * 通过短信模版发送短信息
| *
| * @param phone 接收通知的电话号码
| * @param params 通知模版内容里的参数,类似"您的验证码为{1}"中{1}的值
| */
| AliyunSmsResult sendWithTemplate(String phone, String[] params);
| }
|
|