提交 | 用户 | 时间
|
71e81e
|
1 |
package cn.stylefeng.guns.sys.modular.system.mapper; |
懒 |
2 |
|
|
3 |
import cn.stylefeng.guns.sys.modular.system.entity.OperationLog; |
|
4 |
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
5 |
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
6 |
import org.apache.ibatis.annotations.Param; |
|
7 |
|
|
8 |
import java.util.List; |
|
9 |
import java.util.Map; |
|
10 |
|
|
11 |
/** |
|
12 |
* <p> |
|
13 |
* 操作日志 Mapper 接口 |
|
14 |
* </p> |
|
15 |
* |
|
16 |
* @author stylefeng |
|
17 |
* @since 2018-12-07 |
|
18 |
*/ |
|
19 |
public interface OperationLogMapper extends BaseMapper<OperationLog> { |
|
20 |
|
|
21 |
/** |
|
22 |
* 获取操作日志 |
|
23 |
*/ |
|
24 |
List<Map<String, Object>> getOperationLogs(@Param("page") Page page, @Param("beginTime") String beginTime, @Param("endTime") String endTime, @Param("logName") String logName, @Param("logType") String logType); |
|
25 |
|
|
26 |
|
|
27 |
} |