ISysOperLogService.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package com.ruoyi.system.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.ruoyi.common.core.page.TableDataInfo;
  4. import com.ruoyi.system.domain.SysOperLog;
  5. import java.util.List;
  6. /**
  7. * 操作日志 服务层
  8. *
  9. * @author ruoyi
  10. */
  11. public interface ISysOperLogService extends IService<SysOperLog> {
  12. TableDataInfo<SysOperLog> selectPageOperLogList(SysOperLog operLog);
  13. /**
  14. * 新增操作日志
  15. *
  16. * @param operLog 操作日志对象
  17. */
  18. public void insertOperlog(SysOperLog operLog);
  19. /**
  20. * 查询系统操作日志集合
  21. *
  22. * @param operLog 操作日志对象
  23. * @return 操作日志集合
  24. */
  25. public List<SysOperLog> selectOperLogList(SysOperLog operLog);
  26. /**
  27. * 批量删除系统操作日志
  28. *
  29. * @param operIds 需要删除的操作日志ID
  30. * @return 结果
  31. */
  32. public int deleteOperLogByIds(Long[] operIds);
  33. /**
  34. * 查询操作日志详细
  35. *
  36. * @param operId 操作ID
  37. * @return 操作日志对象
  38. */
  39. public SysOperLog selectOperLogById(Long operId);
  40. /**
  41. * 清空操作日志
  42. */
  43. public void cleanOperLog();
  44. }