ISysSpiderSourceDataService.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.xzl.web.service;
  2. import java.util.List;
  3. import com.xzl.system.domain.SysSpiderSourceData;
  4. /**
  5. * 原始采集数据Service接口
  6. *
  7. * @author xzl
  8. * @date 2025-11-13
  9. */
  10. public interface ISysSpiderSourceDataService
  11. {
  12. /**
  13. * 查询原始采集数据
  14. *
  15. * @param id 原始采集数据主键
  16. * @return 原始采集数据
  17. */
  18. public SysSpiderSourceData selectSysSpiderSourceDataById(Long id);
  19. /**
  20. * 查询原始采集数据列表
  21. *
  22. * @param sysSpiderSourceData 原始采集数据
  23. * @return 原始采集数据集合
  24. */
  25. public List<SysSpiderSourceData> selectSysSpiderSourceDataList(SysSpiderSourceData sysSpiderSourceData);
  26. /**
  27. * 新增原始采集数据
  28. *
  29. * @param sysSpiderSourceData 原始采集数据
  30. * @return 结果
  31. */
  32. public int insertSysSpiderSourceData(SysSpiderSourceData sysSpiderSourceData);
  33. /**
  34. * 修改原始采集数据
  35. *
  36. * @param sysSpiderSourceData 原始采集数据
  37. * @return 结果
  38. */
  39. public int updateSysSpiderSourceData(SysSpiderSourceData sysSpiderSourceData);
  40. /**
  41. * 批量删除原始采集数据
  42. *
  43. * @param ids 需要删除的原始采集数据主键集合
  44. * @return 结果
  45. */
  46. public int deleteSysSpiderSourceDataByIds(Long[] ids);
  47. /**
  48. * 删除原始采集数据信息
  49. *
  50. * @param id 原始采集数据主键
  51. * @return 结果
  52. */
  53. public int deleteSysSpiderSourceDataById(Long id);
  54. public void collectPage(String pageUrl);
  55. }