vince
2024-03-04 070b1e9cc8fccd36e7b65720a778ac46e118c792
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
package com.fzzy.gateway.api;
 
 
import com.fzzy.gateway.data.BaseReqData;
 
/**
 * 网关设备同步接口,根据业务需求定义接口
 */
public interface GatewaySyncLedService {
 
    /**
     * 协议定义
     *
     * @return
     */
    String getLedProtocol();
 
 
 
 
 
    /**
     * 推送报文给LED
     * <p>
     *  TODO>>>>>当前接口文档看不懂
     *
     * @return
     */
    public String push2Led(BaseReqData reqData);
 
 
 
 
}