IExternalInterfaceLogService.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.phm.manage.service;
  2. import com.phm.manage.domain.ExternalInterfaceLog;
  3. import java.util.List;
  4. /**
  5. * 外部接口日志Service接口
  6. *
  7. * @author phm
  8. * @date 2023-08-22
  9. */
  10. public interface IExternalInterfaceLogService {
  11. /**
  12. * 查询外部接口日志
  13. *
  14. * @param id 外部接口日志主键
  15. * @return 外部接口日志
  16. */
  17. public ExternalInterfaceLog selectExternalInterfaceLogById(Long id);
  18. /**
  19. * 查询外部接口日志列表
  20. *
  21. * @param externalInterfaceLog 外部接口日志
  22. * @return 外部接口日志集合
  23. */
  24. public List<ExternalInterfaceLog> selectExternalInterfaceLogList(ExternalInterfaceLog externalInterfaceLog);
  25. /**
  26. * 新增外部接口日志
  27. *
  28. * @param externalInterfaceLog 外部接口日志
  29. * @return 结果
  30. */
  31. public int insertExternalInterfaceLog(ExternalInterfaceLog externalInterfaceLog);
  32. /**
  33. * 修改外部接口日志
  34. *
  35. * @param externalInterfaceLog 外部接口日志
  36. * @return 结果
  37. */
  38. public int updateExternalInterfaceLog(ExternalInterfaceLog externalInterfaceLog);
  39. /**
  40. * 批量删除外部接口日志
  41. *
  42. * @param ids 需要删除的外部接口日志主键集合
  43. * @return 结果
  44. */
  45. public int deleteExternalInterfaceLogByIds(Long[] ids);
  46. /**
  47. * 删除外部接口日志信息
  48. *
  49. * @param id 外部接口日志主键
  50. * @return 结果
  51. */
  52. public int deleteExternalInterfaceLogById(Long id);
  53. }