package com.billion.main.da.service;
|
|
import com.billion.main.da.domain.DaParamCollection;
|
|
import java.util.List;
|
|
/**
|
* 参数采集Service接口
|
*
|
* @author Billion-Yi
|
* @date 2024-11-20
|
*/
|
public interface IDaParamCollectionService
|
{
|
/**
|
* 查询参数采集
|
*
|
* @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 ids 需要删除的参数采集主键集合
|
* @return 结果
|
*/
|
public int deleteDaParamCollectionByIds(Long[] ids);
|
|
/**
|
* 删除参数采集信息
|
*
|
* @param id 参数采集主键
|
* @return 结果
|
*/
|
public int deleteDaParamCollectionById(Long id);
|
/**
|
* 使用sqlSessionFactory实现批量插入数据
|
*
|
* @param list 设备产品过程参数采集主键
|
* @return 结果
|
*/
|
void saveBeachDaParamCollection(List<DaParamCollection> list);
|
}
|