短信日志服务
This commit is contained in:
parent
c94d52f76d
commit
950c3f7947
|
@ -0,0 +1,22 @@
|
|||
package net.maku.system.service;
|
||||
|
||||
import net.maku.framework.common.utils.PageResult;
|
||||
import net.maku.framework.mybatis.service.BaseService;
|
||||
import net.maku.system.entity.SysSmsLogEntity;
|
||||
import net.maku.system.query.SysSmsLogQuery;
|
||||
import net.maku.system.vo.SysSmsLogVO;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 短信日志
|
||||
*
|
||||
* @author 阿沐 babamu@126.com
|
||||
* <a href="https://maku.net">MAKU</a>
|
||||
*/
|
||||
public interface SysSmsLogService extends BaseService<SysSmsLogEntity> {
|
||||
|
||||
PageResult<SysSmsLogVO> page(SysSmsLogQuery query);
|
||||
|
||||
void delete(List<Long> idList);
|
||||
}
|
Loading…
Reference in New Issue
Block a user