SmsLogService.java 316 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 package cn.wisenergy.service.app; /** * * 短信功能业务层接口 * * Created by m1991 on 2021/2/28 22:53 */ public interface SmsLogService { /** * 发送短信 * @param phone * @param codeType * @param uId */ void sendMessage(String phone, Integer codeType, Long uId); }