heheng
5 天以前 3341599719e0ae63889b6bfb4eea3cf4521b0ab8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.gkhy.exam.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.exam.common.api.CommonPage;
import com.gkhy.exam.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();
}