admin
3 天以前 768498719683f85e5ed19c73eb3d14cdbf420df4
提交 | 用户 | 时间
e57a89 1 package com.jcdm.system.mapper;
2
3 import java.util.List;
4 import com.jcdm.system.domain.SysOperLog;
5
6 /**
7  * 操作日志 数据层
8  * 
9  * @author jc
10  */
11 public interface SysOperLogMapper
12 {
13     /**
14      * 新增操作日志
15      * 
16      * @param operLog 操作日志对象
17      */
18     public void insertOperlog(SysOperLog operLog);
19
20     /**
21      * 查询系统操作日志集合
22      * 
23      * @param operLog 操作日志对象
24      * @return 操作日志集合
25      */
26     public List<SysOperLog> selectOperLogList(SysOperLog operLog);
27
28     /**
29      * 批量删除系统操作日志
30      * 
31      * @param operIds 需要删除的操作日志ID
32      * @return 结果
33      */
34     public int deleteOperLogByIds(Long[] operIds);
35
36     /**
37      * 查询操作日志详细
38      * 
39      * @param operId 操作ID
40      * @return 操作日志对象
41      */
42     public SysOperLog selectOperLogById(Long operId);
43
44     /**
45      * 清空操作日志
46      */
47     public void cleanOperLog();
48 }