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

49 lines
1014 B
Java

8 years ago
package com.ruoyi.system.service;
8 years ago
import java.util.List;
8 years ago
import com.ruoyi.system.domain.SysOperLog;
8 years ago
/**
*
*
* @author ruoyi
*/
8 years ago
public interface ISysOperLogService
8 years ago
{
/**
*
*
* @param operLog
*/
8 years ago
public void insertOperlog(SysOperLog operLog);
8 years ago
/**
*
*
* @param operLog
* @return
*/
8 years ago
public List<SysOperLog> selectOperLogList(SysOperLog operLog);
8 years ago
/**
*
*
* @param ids
* @return
*/
public int deleteOperLogByIds(String ids);
/**
*
*
* @param operId ID
* @return
*/
8 years ago
public SysOperLog selectOperLogById(Long operId);
/**
*
*/
public void cleanOperLog();
8 years ago
}