ruoyi-system/src/main/java/com/ruoyi/system/service/ISysOperLogService.java
@@ -1,7 +1,7 @@
package com.ruoyi.system.service;
import com.ruoyi.common.core.mybatisplus.core.IServicePlus;
import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.common.mybatis.core.page.PageQuery;
import com.ruoyi.common.mybatis.core.page.TableDataInfo;
import com.ruoyi.system.domain.SysOperLog;
import java.util.List;
@@ -9,18 +9,18 @@
/**
 * 操作日志 服务层
 *
 * @author ruoyi
 * @author Lion Li
 */
public interface ISysOperLogService extends IServicePlus<SysOperLog> {
public interface ISysOperLogService {
    TableDataInfo<SysOperLog> selectPageOperLogList(SysOperLog operLog);
    TableDataInfo<SysOperLog> selectPageOperLogList(SysOperLog operLog, PageQuery pageQuery);
    /**
     * 新增操作日志
     *
     * @param operLog 操作日志对象
     */
    public void insertOperlog(SysOperLog operLog);
    void insertOperlog(SysOperLog operLog);
    /**
     * 查询系统操作日志集合
@@ -28,7 +28,7 @@
     * @param operLog 操作日志对象
     * @return 操作日志集合
     */
    public List<SysOperLog> selectOperLogList(SysOperLog operLog);
    List<SysOperLog> selectOperLogList(SysOperLog operLog);
    /**
     * 批量删除系统操作日志
@@ -36,7 +36,7 @@
     * @param operIds 需要删除的操作日志ID
     * @return 结果
     */
    public int deleteOperLogByIds(Long[] operIds);
    int deleteOperLogByIds(Long[] operIds);
    /**
     * 查询操作日志详细
@@ -44,10 +44,10 @@
     * @param operId 操作ID
     * @return 操作日志对象
     */
    public SysOperLog selectOperLogById(Long operId);
    SysOperLog selectOperLogById(Long operId);
    /**
     * 清空操作日志
     */
    public void cleanOperLog();
    void cleanOperLog();
}