liulingling.177216
2024-08-26 349f1cfc5fa77fbc636d542df0d8050fddec48c2
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
package com.dingzhuo.energy.project.gateway.mapper;
 
import com.dingzhuo.energy.project.gateway.domain.GatewayHbtLog;
import java.util.List;
 
/**
 * 网关心跳日志Mapper接口
 * 
 * @author zhw
 * @date 2022-04-15
 */
public interface GatewayHbtLogMapper 
{
    /**
     * 查询网关心跳日志
     * 
     * @param id 网关心跳日志ID
     * @return 网关心跳日志
     */
    public GatewayHbtLog selectGatewayHbtLogById(String id);
 
    /**
     * 查询网关心跳日志列表
     * 
     * @param gatewayHbtLog 网关心跳日志
     * @return 网关心跳日志集合
     */
    public List<GatewayHbtLog> selectGatewayHbtLogList(GatewayHbtLog gatewayHbtLog);
 
    /**
     * 新增网关心跳日志
     * 
     * @param gatewayHbtLog 网关心跳日志
     * @return 结果
     */
    public int insertGatewayHbtLog(GatewayHbtLog gatewayHbtLog);
 
    /**
     * 修改网关心跳日志
     * 
     * @param gatewayHbtLog 网关心跳日志
     * @return 结果
     */
    public int updateGatewayHbtLog(GatewayHbtLog gatewayHbtLog);
 
    /**
     * 删除网关心跳日志
     * 
     * @param id 网关心跳日志ID
     * @return 结果
     */
    public int deleteGatewayHbtLogById(String id);
 
    /**
     * 批量删除网关心跳日志
     * 
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteGatewayHbtLogByIds(String[] ids);
}