jiaosong
2023-11-10 58efaec9ed06a348154b1ece394795db0e48490f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.doumee.service.business;
 
/**
 * 与硬件对接服务
 * @author 江蹄蹄
 * @date 2023/10/09 18:06
 */
public interface DeviceSubcribeService {
    /**
     * 设备上报数据(上报)
     * @param param 上报参数
     */
    void listener(String msgId,String param ,String topic);
 
}