package com.jcdm.main.da.testDeviceInterface.mapper;
|
|
import java.util.List;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.jcdm.main.da.testDeviceInterface.domain.DaTestDeviceInterface;
|
|
/**
|
* 测试设备接口数据Mapper接口
|
*
|
* @author hdy
|
* @date 2024-05-13
|
*/
|
public interface DaTestDeviceInterfaceMapper extends BaseMapper<DaTestDeviceInterface>
|
{
|
/**
|
* 查询测试设备接口数据
|
*
|
* @param id 测试设备接口数据主键
|
* @return 测试设备接口数据
|
*/
|
public DaTestDeviceInterface selectDaTestDeviceInterfaceById(Long id);
|
|
/**
|
* 查询测试设备接口数据列表
|
*
|
* @param daTestDeviceInterface 测试设备接口数据
|
* @return 测试设备接口数据集合
|
*/
|
public List<DaTestDeviceInterface> selectDaTestDeviceInterfaceList(DaTestDeviceInterface daTestDeviceInterface);
|
|
/**
|
* 新增测试设备接口数据
|
*
|
* @param daTestDeviceInterface 测试设备接口数据
|
* @return 结果
|
*/
|
public int insertDaTestDeviceInterface(DaTestDeviceInterface daTestDeviceInterface);
|
|
/**
|
* 修改测试设备接口数据
|
*
|
* @param daTestDeviceInterface 测试设备接口数据
|
* @return 结果
|
*/
|
public int updateDaTestDeviceInterface(DaTestDeviceInterface daTestDeviceInterface);
|
|
/**
|
* 删除测试设备接口数据
|
*
|
* @param id 测试设备接口数据主键
|
* @return 结果
|
*/
|
public int deleteDaTestDeviceInterfaceById(Long id);
|
|
/**
|
* 批量删除测试设备接口数据
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteDaTestDeviceInterfaceByIds(Long[] ids);
|
}
|