Files
RuoYi/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysOperLogMapper.java

49 lines
1.0 KiB
Java
Raw Normal View History

2018-10-07 14:16:47 +08:00
package com.ruoyi.system.mapper;
2018-07-09 08:44:52 +08:00
import java.util.List;
2018-10-07 14:16:47 +08:00
import com.ruoyi.system.domain.SysOperLog;
2018-07-09 08:44:52 +08:00
/**
* 操作日志 数据层
*
* @author ruoyi
*/
2018-10-07 14:16:47 +08:00
public interface SysOperLogMapper
2018-07-09 08:44:52 +08:00
{
/**
* 新增操作日志
*
* @param operLog 操作日志对象
*/
2018-10-07 14:16:47 +08:00
public void insertOperlog(SysOperLog operLog);
2018-07-09 08:44:52 +08:00
/**
* 查询系统操作日志集合
*
* @param operLog 操作日志对象
* @return 操作日志集合
*/
2018-10-07 14:16:47 +08:00
public List<SysOperLog> selectOperLogList(SysOperLog operLog);
2018-07-09 08:44:52 +08:00
/**
* 批量删除系统操作日志
*
* @param ids 需要删除的数据
* @return 结果
*/
public int deleteOperLogByIds(String[] ids);
/**
* 查询操作日志详细
*
* @param operId 操作ID
* @return 操作日志对象
*/
2018-10-07 14:16:47 +08:00
public SysOperLog selectOperLogById(Long operId);
/**
* 清空操作日志
*/
public void cleanOperLog();
2018-07-09 08:44:52 +08:00
}