package com.ruoyi.interchange.mapper;
|
|
import com.ruoyi.interchange.domain.TbDataSendRecords;
|
|
import java.util.List;
|
|
/**
|
* 数据发送记录Mapper接口
|
*
|
* @author ruoyi
|
* @date 2023-04-25
|
*/
|
public interface TbDataSendRecordsMapper
|
{
|
/**
|
* 查询数据发送记录
|
*
|
* @param id 数据发送记录主键
|
* @return 数据发送记录
|
*/
|
public TbDataSendRecords selectTbDataSendRecordsById(Long id);
|
|
/**
|
* 查询数据发送记录列表
|
*
|
* @param tbDataSendRecords 数据发送记录
|
* @return 数据发送记录集合
|
*/
|
public List<TbDataSendRecords> selectTbDataSendRecordsList(TbDataSendRecords tbDataSendRecords);
|
|
/**
|
* 新增数据发送记录
|
*
|
* @param tbDataSendRecords 数据发送记录
|
* @return 结果
|
*/
|
public int insertTbDataSendRecords(TbDataSendRecords tbDataSendRecords);
|
|
/**
|
* 修改数据发送记录
|
*
|
* @param tbDataSendRecords 数据发送记录
|
* @return 结果
|
*/
|
public int updateTbDataSendRecords(TbDataSendRecords tbDataSendRecords);
|
|
/**
|
* 删除数据发送记录
|
*
|
* @param id 数据发送记录主键
|
* @return 结果
|
*/
|
public int deleteTbDataSendRecordsById(Long id);
|
|
/**
|
* 批量删除数据发送记录
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteTbDataSendRecordsByIds(Long[] ids);
|
}
|