wujianwei
4 天以前 2ca1013333bb1f80d104e54ac2e7171bd8dffc77
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package com.ruoyi.cwgl.service;
 
import java.util.List;
import com.ruoyi.cwgl.domain.RequestLog;
import com.baomidou.mybatisplus.extension.service.IService;
/**
 * 请求日志Service接口
 * 
 * @author ruoyi
 * @date 2025-08-27
 */
public interface IRequestLogService extends IService<RequestLog>
{
    /**
     * 查询请求日志
     * 
     * @param id 请求日志ID
     * @return 请求日志
     */
    public RequestLog selectRequestLogById(Integer id);
 
    /**
     * 查询请求日志 记录数
     *
     * @param requestLog 请求日志
     * @return 请求日志集合
     */
    public int selectRequestLogCount(RequestLog requestLog);
 
    /**
     * 查询请求日志列表
     * 
     * @param requestLog 请求日志
     * @return 请求日志集合
     */
    public List<RequestLog> selectRequestLogList(RequestLog requestLog);
 
    /**
     * 查询请求日志列表 异步 导出
     *
     * @param requestLog 请求日志
     * @param exportKey 导出功能的唯一标识
     * @return 请求日志集合
     */
    public void export(RequestLog requestLog, String exportKey) ;
 
 
    /**
     * 新增请求日志
     * 
     * @param requestLog 请求日志
     * @return 结果
     */
    public int insertRequestLog(RequestLog requestLog);
 
    /**
     * 新增请求日志[批量]
     *
     * @param requestLogs 请求日志
     * @return 结果
     */
    public int insertRequestLogBatch(List<RequestLog> requestLogs);
 
    /**
     * 修改请求日志
     * 
     * @param requestLog 请求日志
     * @return 结果
     */
    public int updateRequestLog(RequestLog requestLog);
 
    /**
     * 修改请求日志[批量]
     *
     * @param requestLogs 请求日志
     * @return 结果
     */
    public int updateRequestLogBatch(List<RequestLog> requestLogs);
    /**
     * 批量删除请求日志
     * 
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteRequestLogByIds(String ids);
 
    /**
     * 批量删除请求日志
     *
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteRequestLogByIds(Integer[] ids);
 
    /**
     * 删除请求日志信息
     * 
     * @param id 请求日志ID
     * @return 结果
     */
    public int deleteRequestLogById(Integer id);
}