package com.ruoyi.interchange.service;
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
import com.ruoyi.interchange.domain.TbDataSendRecords;
|
|
import java.util.List;
|
|
/**
|
* 数据发送记录Service接口
|
*
|
* @author ruoyi
|
* @date 2023-04-25
|
*/
|
public interface ITbDataSendRecordsService
|
{
|
/**
|
* 查询数据发送记录
|
*
|
* @param id 数据发送记录主键
|
* @return 数据发送记录
|
*/
|
public TbDataSendRecords selectTbDataSendRecordsById(String id);
|
|
/**
|
* 查询数据发送记录列表
|
*
|
* @param tbDataSendRecords 数据发送记录
|
* @return 数据发送记录集合
|
*/
|
public List<TbDataSendRecords> selectTbDataSendRecordsList(TbDataSendRecords tbDataSendRecords);
|
/**
|
* 查询数据发送记录列表
|
*
|
* @param tbDataSendRecords 数据发送记录
|
* @return 数据发送记录集合
|
*/
|
public TableDataInfo selectTbDataSendRecordsList2(TbDataSendRecords tbDataSendRecords);
|
|
/**
|
* 新增数据发送记录
|
*
|
* @param tbDataSendRecords 数据发送记录
|
* @return 结果
|
*/
|
public int insertTbDataSendRecords(TbDataSendRecords tbDataSendRecords);
|
|
/**
|
* 修改数据发送记录
|
*
|
* @param tbDataSendRecords 数据发送记录
|
* @return 结果
|
*/
|
public int updateTbDataSendRecords(TbDataSendRecords tbDataSendRecords);
|
|
/**
|
* 批量删除数据发送记录
|
*
|
* @param ids 需要删除的数据发送记录主键集合
|
* @return 结果
|
*/
|
public int deleteTbDataSendRecordsByIds(String[] ids);
|
|
/**
|
* 删除数据发送记录信息
|
*
|
* @param id 数据发送记录主键
|
* @return 结果
|
*/
|
public int deleteTbDataSendRecordsById(String id);
|
/**
|
* 数据发送记录信息保存到mongodb数据库
|
*
|
* @param tbDataSendRecords 数据发送记录主键
|
* @return 结果
|
*/
|
public void recordSaveMongo(TbDataSendRecords tbDataSendRecords);
|
}
|