admin
2024-04-11 a2e67e004a5b908cb2b5eeda53101befb0d9578f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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);
}