mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-07 11:29:58 +08:00
49 lines
888 B
Java
49 lines
888 B
Java
package com.jsowell.system.mapper;
|
|
|
|
import com.jsowell.system.domain.SysOperLog;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 操作日志 数据层
|
|
*
|
|
* @author jsowell
|
|
*/
|
|
public interface SysOperLogMapper {
|
|
/**
|
|
* 新增操作日志
|
|
*
|
|
* @param operLog 操作日志对象
|
|
*/
|
|
public void insertOperlog(SysOperLog operLog);
|
|
|
|
/**
|
|
* 查询系统操作日志集合
|
|
*
|
|
* @param operLog 操作日志对象
|
|
* @return 操作日志集合
|
|
*/
|
|
public List<SysOperLog> selectOperLogList(SysOperLog operLog);
|
|
|
|
/**
|
|
* 批量删除系统操作日志
|
|
*
|
|
* @param operIds 需要删除的操作日志ID
|
|
* @return 结果
|
|
*/
|
|
public int deleteOperLogByIds(Long[] operIds);
|
|
|
|
/**
|
|
* 查询操作日志详细
|
|
*
|
|
* @param operId 操作ID
|
|
* @return 操作日志对象
|
|
*/
|
|
public SysOperLog selectOperLogById(Long operId);
|
|
|
|
/**
|
|
* 清空操作日志
|
|
*/
|
|
public void cleanOperLog();
|
|
}
|