mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-20 02:06:38 +08:00
61 lines
1.8 KiB
Java
61 lines
1.8 KiB
Java
package com.ruoyi.demo.controller;
|
|
|
|
import com.ruoyi.common.core.domain.R;
|
|
import lombok.RequiredArgsConstructor;
|
|
import org.dromara.sms4j.api.SmsBlend;
|
|
import org.dromara.sms4j.api.entity.SmsResponse;
|
|
import org.dromara.sms4j.core.factory.SmsFactory;
|
|
import org.dromara.sms4j.provider.enumerate.SupplierType;
|
|
import org.springframework.validation.annotation.Validated;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import java.util.LinkedHashMap;
|
|
|
|
/**
|
|
* 短信演示案例
|
|
* 请先阅读文档 否则无法使用
|
|
*
|
|
* @author Lion Li
|
|
* @version 4.2.0
|
|
*/
|
|
@Validated
|
|
@RequiredArgsConstructor
|
|
@RestController
|
|
@RequestMapping("/demo/sms")
|
|
public class SmsController {
|
|
|
|
/**
|
|
* 发送短信Aliyun
|
|
*
|
|
* @param phones 电话号
|
|
* @param templateId 模板ID
|
|
*/
|
|
@GetMapping("/sendAliyun")
|
|
public R<Object> sendAliyun(String phones, String templateId) {
|
|
LinkedHashMap<String, String> map = new LinkedHashMap<>(1);
|
|
map.put("code", "1234");
|
|
SmsBlend smsBlend = SmsFactory.createSmsBlend(SupplierType.ALIBABA);
|
|
SmsResponse smsResponse = smsBlend.sendMessage(phones, templateId, map);
|
|
return R.ok(smsResponse);
|
|
}
|
|
|
|
/**
|
|
* 发送短信Tencent
|
|
*
|
|
* @param phones 电话号
|
|
* @param templateId 模板ID
|
|
*/
|
|
@GetMapping("/sendTencent")
|
|
public R<Object> sendTencent(String phones, String templateId) {
|
|
LinkedHashMap<String, String> map = new LinkedHashMap<>(1);
|
|
// map.put("2", "测试测试");
|
|
map.put("1", "1234");
|
|
SmsBlend smsBlend = SmsFactory.createSmsBlend(SupplierType.TENCENT);
|
|
SmsResponse smsResponse = smsBlend.sendMessage(phones, templateId, map);
|
|
return R.ok(smsResponse);
|
|
}
|
|
|
|
}
|