SmsService.java 178 B

12345678910
  1. package com.bootdo.datas.service;
  2. /**
  3. *@date 2022/3/17 14:47
  4. *@author wangp
  5. *@description
  6. */
  7. public interface SmsService {
  8. void sendSMS(String mobile,String content);
  9. }