!168 格式化代码

Merge pull request !168 from 致远/dev-3.0.x
This commit is contained in:
风如歌 2024-04-19 06:27:09 +00:00 committed by Gitee
commit ef44c1a2df
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -43,12 +43,13 @@ public interface SmsBlend {
SmsResponse sendMessage(String phone, String message); SmsResponse sendMessage(String phone, String message);
/** /**
* sendMessage * sendMessage
* <p>说明发送固定消息模板多模板参数短信 * <p>说明发送固定消息模板多模板参数短信
* @param phone 接收短信的手机号 *
* @param phone 接收短信的手机号
* @param messages 模板内容 * @param messages 模板内容
* @author :Wind * @author :Wind
*/ */
SmsResponse sendMessage(String phone, LinkedHashMap<String, String> messages); SmsResponse sendMessage(String phone, LinkedHashMap<String, String> messages);
/** /**
@ -190,7 +191,7 @@ public interface SmsBlend {
* @param phones 需要加入黑名单的手机号数组 * @param phones 需要加入黑名单的手机号数组
* @author :sh1yu * @author :sh1yu
*/ */
default void batchJoinBlacklist(List<String > phones) { default void batchJoinBlacklist(List<String> phones) {
} }
/** /**
@ -200,6 +201,6 @@ public interface SmsBlend {
* @param phones 需要移除黑名单的手机号数组 * @param phones 需要移除黑名单的手机号数组
* @author :sh1yu * @author :sh1yu
*/ */
default void batchRemovalFromBlacklist(List<String > phones) { default void batchRemovalFromBlacklist(List<String> phones) {
} }
} }