package com.ruoyi.cwgl.mapper;
|
|
import java.util.List;
|
import com.ruoyi.cwgl.domain.RequestLog;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
/**
|
* 请求日志Mapper接口
|
*
|
* @author ruoyi
|
* @date 2025-08-27
|
*/
|
public interface RequestLogMapper extends BaseMapper<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 请求日志
|
* @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 id 请求日志ID
|
* @return 结果
|
*/
|
public int deleteRequestLogById(Integer id);
|
|
/**
|
* 批量删除请求日志
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteRequestLogByIds(Integer[] ids);
|
}
|