- 添加短信 单个,批量发送

This commit is contained in:
sin
2019-05-19 16:24:33 +08:00
parent 7905541501
commit 6dc432d49c
7 changed files with 241 additions and 7 deletions

View File

@@ -66,4 +66,10 @@ public class SmsServiceImplTest {
public void deleteTemplateTest() {
smsService.deleteTemplate(3);
}
@Test
public void singleSendTest() {
String mobile = "13302926050";
smsService.singleSend(mobile, 1);
}
}