| | |
| | | package com.zhitan.system.service; |
| | | |
| | | import java.util.List; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.zhitan.system.domain.SysOperLog; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 操作日志 服务层 |
| | | * |
| | | * |
| | | * @author zhitan |
| | | */ |
| | | public interface ISysOperLogService |
| | | { |
| | | /** |
| | | * 新增操作日志 |
| | | * |
| | | * |
| | | * @param operLog 操作日志对象 |
| | | */ |
| | | void insertOperlog(SysOperLog operLog); |
| | | |
| | | /** |
| | | * 查询系统操作日志集合 |
| | | * |
| | | * |
| | | * @param operLog 操作日志对象 |
| | | * @return 操作日志集合 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 批量删除系统操作日志 |
| | | * |
| | | * |
| | | * @param operIds 需要删除的操作日志ID |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询操作日志详细 |
| | | * |
| | | * |
| | | * @param operId 操作ID |
| | | * @return 操作日志对象 |
| | | */ |
| | |
| | | * 清空操作日志 |
| | | */ |
| | | void cleanOperLog(); |
| | | |
| | | Page<SysOperLog> selectOperLogPage(SysOperLog operLog, Long pageNum, Long pageSize); |
| | | } |