提交 | 用户 | 时间
|
1ac2bc
|
1 |
package cn.stylefeng.guns.sys.modular.system.service; |
懒 |
2 |
|
|
3 |
import cn.stylefeng.guns.sys.modular.system.entity.OperationLog; |
|
4 |
import cn.stylefeng.guns.sys.modular.system.mapper.OperationLogMapper; |
|
5 |
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
6 |
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
|
7 |
import org.springframework.stereotype.Service; |
|
8 |
|
|
9 |
import java.util.List; |
|
10 |
import java.util.Map; |
|
11 |
|
|
12 |
/** |
|
13 |
* <p> |
|
14 |
* 操作日志 服务实现类 |
|
15 |
* </p> |
|
16 |
* |
|
17 |
* @author stylefeng |
|
18 |
* @since 2018-12-07 |
|
19 |
*/ |
|
20 |
@Service |
|
21 |
public class OperationLogService extends ServiceImpl<OperationLogMapper, OperationLog> { |
|
22 |
|
|
23 |
/** |
|
24 |
* 获取操作日志列表 |
|
25 |
* |
|
26 |
* @author fengshuonan |
|
27 |
* @Date 2018/12/23 5:41 PM |
|
28 |
*/ |
|
29 |
public List<Map<String, Object>> getOperationLogs(Page page, String beginTime, String endTime, String logName, String s) { |
|
30 |
return this.baseMapper.getOperationLogs(page, beginTime, endTime, logName, s); |
|
31 |
} |
|
32 |
|
|
33 |
} |