New file |
| | |
| | | package com.ruoyi.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.core.web.domain.AjaxResult; |
| | | import com.ruoyi.common.core.web.page.BasePage; |
| | | import com.ruoyi.common.core.web.page.PageInfo; |
| | | import com.ruoyi.system.api.domain.SysLoginLog; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2024/8/12 15:47 |
| | | */ |
| | | public interface ISysLoginLogService extends IService<SysLoginLog> { |
| | | |
| | | |
| | | /** |
| | | * 获取列表数据 |
| | | * @param name |
| | | * @param basePage |
| | | * @return |
| | | */ |
| | | PageInfo<SysLoginLog> pageList(String name, BasePage basePage); |
| | | |
| | | |
| | | /** |
| | | * 添加登录日志 |
| | | * @param loginLog |
| | | * @return |
| | | */ |
| | | AjaxResult addLoginLog(SysLoginLog loginLog); |
| | | } |