| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.xzl.web.mapper;
- import java.util.List;
- import com.xzl.system.domain.SysSpiderSourceData;
- /**
- * 原始采集数据Mapper接口
- *
- * @author xzl
- * @date 2025-11-13
- */
- public interface SysSpiderSourceDataMapper
- {
- /**
- * 查询原始采集数据
- *
- * @param id 原始采集数据主键
- * @return 原始采集数据
- */
- public SysSpiderSourceData selectSysSpiderSourceDataById(Long id);
- /**
- * 查询原始采集数据列表
- *
- * @param sysSpiderSourceData 原始采集数据
- * @return 原始采集数据集合
- */
- public List<SysSpiderSourceData> selectSysSpiderSourceDataList(SysSpiderSourceData sysSpiderSourceData);
- /**
- * 新增原始采集数据
- *
- * @param sysSpiderSourceData 原始采集数据
- * @return 结果
- */
- public int insertSysSpiderSourceData(SysSpiderSourceData sysSpiderSourceData);
- /**
- * 修改原始采集数据
- *
- * @param sysSpiderSourceData 原始采集数据
- * @return 结果
- */
- public int updateSysSpiderSourceData(SysSpiderSourceData sysSpiderSourceData);
- /**
- * 删除原始采集数据
- *
- * @param id 原始采集数据主键
- * @return 结果
- */
- public int deleteSysSpiderSourceDataById(Long id);
- /**
- * 批量删除原始采集数据
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteSysSpiderSourceDataByIds(Long[] ids);
- }
|