公告板
版本库
活动
搜索
登录
java
/
IgoTravel
igo出行
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
提交基础版本
puzhibing
2022-08-22
1421f8e9c308c4741cb396309035009393b5b036
[java/IgoTravel.git]
/
UserIGOTravel
/
guns-admin
/
src
/
main
/
java
/
com
/
stylefeng
/
guns
/
modular
/
system
/
service
/
IOperationLogService.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.stylefeng.guns.modular.system.service;
import com.baomidou.mybatisplus.plugins.Page;
import com.baomidou.mybatisplus.service.IService;
import com.stylefeng.guns.modular.system.model.OperationLog;
import java.util.List;
import java.util.Map;
/**
* <p>
* 操作日志 服务类
* </p>
*
* @author stylefeng123
* @since 2018-02-22
*/
public interface IOperationLogService extends IService<OperationLog> {
/**
* 获取操作日志列表
*/
List<Map<String, Object>> getOperationLogs(Page<OperationLog> page, String beginTime, String endTime, String logName, String s, String orderByField, boolean asc);
}