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.1 KiB

6 years ago
package com.ruoyi.system.service;
6 years ago
import com.ruoyi.common.core.domain.PageQuery;
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
/**
*
*
* @author Lion Li
6 years ago
*/
public interface ISysOperLogService {
TableDataInfo<SysOperLog> selectPageOperLogList(SysOperLog operLog, PageQuery pageQuery);
6 years ago
/**
*
*
6 years ago
* @param operLog
*/
void insertOperlog(SysOperLog operLog);
6 years ago
/**
*
*
6 years ago
* @param operLog
* @return
*/
List<SysOperLog> selectOperLogList(SysOperLog operLog);
6 years ago
/**
*
*
6 years ago
* @param operIds ID
* @return
*/
int deleteOperLogByIds(Long[] operIds);
6 years ago
/**
*
*
6 years ago
* @param operId ID
* @return
*/
SysOperLog selectOperLogById(Long operId);
6 years ago
/**
*
*/
void cleanOperLog();
6 years ago
}