ISysOperLogService.java 986 B

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