1234567891011121314151617181920212223242526272829303132 |
- /**
- * Copyright (c) 2018 Toby All rights reserved.
- *
- * https://www.scjydz.com
- *
- * 版权所有,侵权必究!
- */
- package com.wjp.modules.message.service;
- import com.wjp.common.service.CrudService;
- import com.wjp.modules.message.dto.SysSmsDTO;
- import com.wjp.modules.message.entity.SysSmsEntity;
- /**
- * 短信
- *
- * @author Toby javatangbin@163.com
- */
- public interface SysSmsService extends CrudService<SysSmsEntity, SysSmsDTO> {
- /**
- * 发送短信
- * @param smsCode 短信编码
- * @param mobile 手机号
- * @param params 短信参数
- */
- void send(String smsCode, String mobile, String params);
- SysSmsEntity getBySmsCode(String smsCode);
- }
|