package com.gkhy.hazmat.system.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.gkhy.hazmat.system.domain.SysOperLog;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 操作日志表 Mapper 接口
|
* </p>
|
*
|
* @author kzy
|
* @since 2023-11-13 08:39:55
|
*/
|
@Mapper
|
public interface SysOperLogMapper extends BaseMapper<SysOperLog> {
|
|
/**
|
* 查询系统操作日志集合
|
*
|
* @param operLog 操作日志对象
|
* @return 操作日志集合
|
*/
|
public List<SysOperLog> selectOperLogList(SysOperLog operLog);
|
|
/**
|
* 批量删除系统操作日志
|
*
|
* @param operIds 需要删除的操作日志ID
|
* @return 结果
|
*/
|
public int deleteOperLogByIds(Long[] operIds);
|
|
/**
|
* 清空操作日志
|
*/
|
public void cleanOperLog();
|
|
|
}
|