package com.billion.main.sc.service; import com.baomidou.mybatisplus.extension.service.IService; import com.billion.main.sc.domain.ScCollectionParamConf; import java.util.List; /** * 参数采集配置Service接口 * * @author HDY * @date 2024-11-21 */ public interface IScCollectionParamConfService extends IService { /** * 查询参数采集配置 * * @param id 参数采集配置主键 * @return 参数采集配置 */ public ScCollectionParamConf selectScCollectionParamConfById(Long id); /** * 查询参数采集配置列表 * * @param scCollectionParamConf 参数采集配置 * @return 参数采集配置集合 */ public List selectScCollectionParamConfList(ScCollectionParamConf scCollectionParamConf); /** * 新增参数采集配置 * * @param scCollectionParamConf 参数采集配置 * @return 结果 */ public int insertScCollectionParamConf(ScCollectionParamConf scCollectionParamConf); /** * 修改参数采集配置 * * @param scCollectionParamConf 参数采集配置 * @return 结果 */ public int updateScCollectionParamConf(ScCollectionParamConf scCollectionParamConf); /** * 批量删除参数采集配置 * * @param ids 需要删除的参数采集配置主键集合 * @return 结果 */ public int deleteScCollectionParamConfByIds(Long[] ids); /** * 删除参数采集配置信息 * * @param id 参数采集配置主键 * @return 结果 */ public int deleteScCollectionParamConfById(Long id); }