jiazx0107@163.com
2023-11-18 328eba66ddc6fdf2f324b9cd04cd6acec9f642de
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
package com.fzzy.gateway.hx2023.service;
 
import com.fzzy.gateway.api.GatewaySyncLedService;
import com.fzzy.gateway.data.BaseReqData;
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
 
/**
 * 网关与设备之间的通讯
 */
@Slf4j
@Data
@Component
public class HxGatewaySyncLedImpl1 implements GatewaySyncLedService {
 
 
    @Override
    public String getLedProtocol() {
        return null;
    }
 
    @Override
    public String push2Led(BaseReqData reqData) {
        return null;
    }
}