| 12345678910111213141516 |
- package com.usky.vpp.service;
- /**
- * 阿里云短信发送
- */
- public interface VppAliyunSmsService {
- /**
- * 发送模板短信
- *
- * @param phone 手机号
- * @param templateCode 模板 CODE
- * @param templateParam JSON 模板变量,如 {"name":"某某公司","responsetype":"日前","time":"2026-07-08 14:00:00~2026-07-08 15:00:00","number":"100","operationtype":"参与削峰"}
- */
- void sendTemplateSms(String phone, String templateCode, String templateParam);
- }
|