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