package com.cyksj.service.sms; /* *项目名: netflix *文件名: SmsService *创建者: JavaZou *创建时间:2023/5/9 9:57 */ public interface SmsService { /** * 发送车队短信通知 车位用户 */ void sendSmsToRelationUser(Long userId, String template, String... title) throws Exception; }