VppAliyunSmsService.java 509 B

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