package com.gkhy.hazmat.system.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.gkhy.hazmat.common.api.CommonPage;
|
import com.gkhy.hazmat.system.domain.SysOperLog;
|
|
/**
|
* <p>
|
* 操作日志表 服务类
|
* </p>
|
*
|
* @author kzy
|
* @since 2023-11-13 08:39:55
|
*/
|
public interface SysOperLogService extends IService<SysOperLog> {
|
|
/**
|
* 新增操作日志
|
* @param operLog
|
*/
|
public void insertOperlog(SysOperLog operLog);
|
|
/**
|
* 查询系统操作日志列表
|
* @param operLog
|
* @return
|
*/
|
public CommonPage selectOperLogList(SysOperLog operLog);
|
|
/**
|
* 批量删除系统操作日志
|
* @param operIds
|
* @return
|
*/
|
public int deleteOperLogByIds(Long[] operIds);
|
|
/**
|
* 擦和讯操作日志详情
|
* @param operId
|
* @return
|
*/
|
public SysOperLog selectOperLogById(Long operId);
|
|
/**
|
* 情况操作日志
|
*/
|
public void cleanOperLog();
|
}
|