package com.jcdm.main.da.opcuaconfig.mapper;
|
|
import com.jcdm.main.da.opcuaconfig.domain.DaOpcuaConfig;
|
|
import java.util.List;
|
|
/**
|
* 交互信号配置Mapper接口
|
*
|
* @author yyt
|
* @date 2024-01-23
|
*/
|
public interface DaOpcuaConfigMapper
|
{
|
/**
|
* 查询交互信号配置
|
*
|
* @param id 交互信号配置主键
|
* @return 交互信号配置
|
*/
|
public DaOpcuaConfig selectDaOpcuaConfigById(Long id);
|
|
/**
|
* 查询交互信号配置列表
|
*
|
* @param daOpcuaConfig 交互信号配置
|
* @return 交互信号配置集合
|
*/
|
public List<DaOpcuaConfig> selectDaOpcuaConfigList(DaOpcuaConfig daOpcuaConfig);
|
|
/**
|
* 新增交互信号配置
|
*
|
* @param daOpcuaConfig 交互信号配置
|
* @return 结果
|
*/
|
public int insertDaOpcuaConfig(DaOpcuaConfig daOpcuaConfig);
|
|
/**
|
* 修改交互信号配置
|
*
|
* @param daOpcuaConfig 交互信号配置
|
* @return 结果
|
*/
|
public int updateDaOpcuaConfig(DaOpcuaConfig daOpcuaConfig);
|
|
/**
|
* 删除交互信号配置
|
*
|
* @param id 交互信号配置主键
|
* @return 结果
|
*/
|
public int deleteDaOpcuaConfigById(Long id);
|
|
/**
|
* 批量删除交互信号配置
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteDaOpcuaConfigByIds(Long[] ids);
|
}
|