12345678910111213 |
- package com.backendsys.modules.tencent.service;
- import com.tencentcloudapi.common.exception.TencentCloudSDKException;
- import com.tencentcloudapi.sms.v20210111.models.SendSmsResponse;
- import java.util.Map;
- public interface TencentSmsService {
- // [腾讯云] 发送短信 { 模板ID, 模板参数, 下发手机号码 }
- SendSmsResponse send(String template_id, String[] templateParamSet, String[] phoneNumberSet) throws TencentCloudSDKException;
- }
|