TencentSmsService.java 458 B

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