50 lines
940 B
Java
Raw Normal View History

2024-01-23 16:42:27 +08:00
package com.ics.system.mapper;
import com.ics.system.domain.OperLog;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/**
* 操作日志 数据层
*
*/
@Mapper
public interface OperLogMapper {
/**
* 新增操作日志
*
* @param operLog 操作日志对象
*/
void insertOperlog(OperLog operLog);
/**
* 查询系统操作日志集合
*
* @param operLog 操作日志对象
* @return 操作日志集合
*/
List<OperLog> selectOperLogList(OperLog operLog);
/**
* 批量删除系统操作日志
*
* @param ids 需要删除的数据
* @return 结果
*/
int deleteOperLogByIds(String[] ids);
/**
* 查询操作日志详细
*
* @param operId 操作ID
* @return 操作日志对象
*/
OperLog selectOperLogById(Long operId);
/**
* 清空操作日志
*/
void cleanOperLog();
}