mirror of
https://gitee.com/elegant_wings/xiongan-meeting.git
synced 2025-06-21 17:49:36 +08:00
50 lines
940 B
Java
50 lines
940 B
Java
![]() |
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();
|
||
|
}
|