houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
package com.iailab.module.data.channel.modbus.service;
 
import com.iailab.module.data.common.utils.PageUtils;
import com.iailab.module.data.channel.modbus.dto.ChannelModBusDeviceDTO;
import com.iailab.module.data.channel.modbus.entity.ChannelModBusDeviceEntity;
 
import java.util.List;
import java.util.Map;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2023年04月23日 17:42:00
 */
public interface ChannelModbusDeviceService {
    /**
     * 分页查询设备
     *
     * @param params
     */
    PageUtils queryPage(Map<String, Object> params);
    /**
     * 添加设备
     *
     * @param channelModBusDeviceEntity
     */
    void add(ChannelModBusDeviceEntity channelModBusDeviceEntity);
    /**
     * 修改设备
     *
     * @param channelModBusDeviceEntity
     */
    void update(ChannelModBusDeviceEntity channelModBusDeviceEntity);
    /**
     * 删除设备
     * @param id
     *
     */
    void delete(String id);
    /**
     * 查询设备详情
     * @param id
     *
     */
    ChannelModBusDeviceEntity info(String id);
 
    /**
     * 查询设备详情
     *
     */
    List<ChannelModBusDeviceDTO> selectAll();
 
    /**
     * 列表
     *
     * @param params
     * @return
     */
    List<ChannelModBusDeviceEntity> list(Map<String, Object> params);
}