ITULogService.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package com.sooka.system.service;
  2. import java.util.List;
  3. import java.util.Map;
  4. import com.sooka.system.domain.TULog;
  5. /**
  6. * 接口调用日志Service接口
  7. *
  8. * @author lei
  9. * @date 2021-07-06
  10. */
  11. public interface ITULogService
  12. {
  13. /**
  14. * 查询接口调用日志
  15. *
  16. * @param id 接口调用日志ID
  17. * @return 接口调用日志
  18. */
  19. public TULog selectTULogById(String id);
  20. /**
  21. * 查询接口调用日志列表
  22. *
  23. * @param tULog 接口调用日志
  24. * @return 接口调用日志集合
  25. */
  26. public List<TULog> selectTULogList(TULog tULog);
  27. /**
  28. * 新增接口调用日志
  29. *
  30. * @param tULog 接口调用日志
  31. * @return 结果
  32. */
  33. public int insertTULog(TULog tULog);
  34. /**
  35. * 修改接口调用日志
  36. *
  37. * @param tULog 接口调用日志
  38. * @return 结果
  39. */
  40. public int updateTULog(TULog tULog);
  41. /**
  42. * 批量删除接口调用日志
  43. *
  44. * @param ids 需要删除的数据ID
  45. * @return 结果
  46. */
  47. public int deleteTULogByIds(String ids);
  48. /**
  49. * 删除接口调用日志信息
  50. *
  51. * @param id 接口调用日志ID
  52. * @return 结果
  53. */
  54. public int deleteTULogById(String id);
  55. /**
  56. * 查询数据总量
  57. * @return 结果
  58. */
  59. public Long getLogCount();
  60. /**
  61. * 查询日志表中的归集量
  62. * @return 结果
  63. */
  64. public Map selectImputationLog(String year);
  65. }