提交 | 用户 | 时间
|
8286c6
|
1 |
package cn.stylefeng.guns.sys.modular.rest.mapper; |
懒 |
2 |
|
|
3 |
import cn.stylefeng.guns.sys.modular.rest.entity.RestLoginLog; |
|
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 RestLoginLogMapper extends BaseMapper<RestLoginLog> { |
|
20 |
|
|
21 |
/** |
|
22 |
* 获取登录日志 |
|
23 |
*/ |
|
24 |
List<Map<String, Object>> getLoginLogs(@Param("page") Page page, @Param("beginTime") String beginTime, |
|
25 |
@Param("endTime") String endTime, @Param("logName") String logName); |
|
26 |
} |