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); }