ReportQueryLogMapper.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.ruoyi.system.mapper;
  2. import java.util.List;
  3. import com.ruoyi.system.domain.ReportQueryLog;
  4. /**
  5. * 查询日志Mapper接口
  6. *
  7. * @author boman
  8. * @date 2021-12-27
  9. */
  10. public interface ReportQueryLogMapper
  11. {
  12. /**
  13. * 查询查询日志
  14. *
  15. * @param logId 查询日志主键
  16. * @return 查询日志
  17. */
  18. public ReportQueryLog selectReportQueryLogByLogId(Long logId);
  19. /**
  20. * 查询查询日志列表
  21. *
  22. * @param reportQueryLog 查询日志
  23. * @return 查询日志集合
  24. */
  25. public List<ReportQueryLog> selectReportQueryLogList(ReportQueryLog reportQueryLog);
  26. /**
  27. * 新增查询日志
  28. *
  29. * @param reportQueryLog 查询日志
  30. * @return 结果
  31. */
  32. public int insertReportQueryLog(ReportQueryLog reportQueryLog);
  33. /**
  34. * 修改查询日志
  35. *
  36. * @param reportQueryLog 查询日志
  37. * @return 结果
  38. */
  39. public int updateReportQueryLog(ReportQueryLog reportQueryLog);
  40. /**
  41. * 删除查询日志
  42. *
  43. * @param logId 查询日志主键
  44. * @return 结果
  45. */
  46. public int deleteReportQueryLogByLogId(Long logId);
  47. /**
  48. * 批量删除查询日志
  49. *
  50. * @param logIds 需要删除的数据主键集合
  51. * @return 结果
  52. */
  53. public int deleteReportQueryLogByLogIds(Long[] logIds);
  54. }