1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| package cn.exrick.xboot.core.service;
|
|
| import cn.exrick.xboot.core.base.XbootBaseService;
| import cn.exrick.xboot.core.common.vo.SearchVo;
| import cn.exrick.xboot.core.entity.Log;
| import org.springframework.data.domain.Page;
| import org.springframework.data.domain.Pageable;
|
| /**
| * 日志接口
| * @author Exrickx
| */
| public interface LogService extends XbootBaseService<Log, String> {
|
| /**
| * 分页搜索获取日志
| * @param type
| * @param key
| * @param searchVo
| * @param pageable
| * @return
| */
| Page<Log> findByConfition(Integer type, String key, SearchVo searchVo, Pageable pageable);
|
| /**
| * 删除所有
| */
| void deleteAll();
| }
|
|