You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.2 KiB

6 years ago
package com.ruoyi.system.service;
6 years ago
import com.ruoyi.common.core.mybatisplus.core.IServicePlus;
import com.ruoyi.common.core.page.TableDataInfo;
6 years ago
import com.ruoyi.system.domain.SysOperLog;
6 years ago
import java.util.List;
6 years ago
/**
*
*
6 years ago
* @author ruoyi
*/
public interface ISysOperLogService extends IServicePlus<SysOperLog> {
TableDataInfo<SysOperLog> selectPageOperLogList(SysOperLog operLog);
6 years ago
/**
*
*
6 years ago
* @param operLog
*/
public void insertOperlog(SysOperLog operLog);
/**
*
*
6 years ago
* @param operLog
* @return
*/
public List<SysOperLog> selectOperLogList(SysOperLog operLog);
/**
*
*
6 years ago
* @param operIds ID
* @return
*/
public int deleteOperLogByIds(Long[] operIds);
/**
*
*
6 years ago
* @param operId ID
* @return
*/
public SysOperLog selectOperLogById(Long operId);
/**
*
*/
public void cleanOperLog();
}