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