linzhijie
2021-03-11 93af1c6ffb9ae0e894689ad3a37b548e57d54cff
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
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.ots.project.exam.mapper;
 
import com.ots.project.exam.domain.EntOperLog;
 
import java.util.List;
 
/**
 * 使用次数操作记录Mapper接口
 *
 * @author ots
 * @date 2020-01-19
 */
public interface EntOperLogMapper {
    /**
     * 查询使用次数操作记录
     *
     * @param logId 使用次数操作记录ID
     * @return 使用次数操作记录
     */
    EntOperLog selectEntOperLogById(Long logId);
 
    /**
     * 查询使用次数操作记录列表
     *
     * @param entOperLog 使用次数操作记录
     * @return 使用次数操作记录集合
     */
    List<EntOperLog> selectEntOperLogList(EntOperLog entOperLog);
 
    /**
     * 新增使用次数操作记录
     *
     * @param entOperLog 使用次数操作记录
     * @return 结果
     */
    int insertEntOperLog(EntOperLog entOperLog);
 
    /**
     * 修改使用次数操作记录
     *
     * @param entOperLog 使用次数操作记录
     * @return 结果
     */
    int updateEntOperLog(EntOperLog entOperLog);
 
    /**
     * 删除使用次数操作记录
     *
     * @param logId 使用次数操作记录ID
     * @return 结果
     */
    int deleteEntOperLogById(Long logId);
 
    /**
     * 批量删除使用次数操作记录
     *
     * @param logIds 需要删除的数据ID
     * @return 结果
     */
    int deleteEntOperLogByIds(String[] logIds);
}