package com.billion.main.da.mapper;
|
|
import java.util.List;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.billion.main.da.domain.DaParamCollection;
|
|
/**
|
* 参数采集Mapper接口
|
*
|
* @author Billion-Yi
|
* @date 2024-11-20
|
*/
|
public interface DaParamCollectionMapper extends BaseMapper<DaParamCollection>
|
{
|
/**
|
* 查询参数采集
|
*
|
* @param id 参数采集主键
|
* @return 参数采集
|
*/
|
public DaParamCollection selectDaParamCollectionById(Long id);
|
|
/**
|
* 查询参数采集列表
|
*
|
* @param daParamCollection 参数采集
|
* @return 参数采集集合
|
*/
|
public List<DaParamCollection> selectDaParamCollectionList(DaParamCollection daParamCollection);
|
|
/**
|
* 新增参数采集
|
*
|
* @param daParamCollection 参数采集
|
* @return 结果
|
*/
|
public int insertDaParamCollection(DaParamCollection daParamCollection);
|
|
/**
|
* 修改参数采集
|
*
|
* @param daParamCollection 参数采集
|
* @return 结果
|
*/
|
public int updateDaParamCollection(DaParamCollection daParamCollection);
|
|
/**
|
* 删除参数采集
|
*
|
* @param id 参数采集主键
|
* @return 结果
|
*/
|
public int deleteDaParamCollectionById(Long id);
|
|
/**
|
* 批量删除参数采集
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteDaParamCollectionByIds(Long[] ids);
|
}
|