SysOperLogMapper.java 956 B

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