YYC
2023-08-14 d3d12e212470904e54affe5ec8c06c672607cab9
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
package com.ld.igds.protocol.modbus.command;
 
import com.ld.igds.io.RemoteEsService;
import com.ld.igds.io.request.BaseRequest;
import com.ld.igds.io.response.BaseResponse;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
 
/**
 * 当前协议针对标准Modbus-TCP协议
 *
 * @Desc:
 * @author: andy.jia
 * @update-time: 2023/8/11 10:07
 */
@Slf4j
@Component(RemoteEsServiceImpl.BEAN_ID)
public class RemoteEsServiceImpl implements RemoteEsService {
 
    public static final String BEAN_ID = "modbus.remoteEsService";
 
    @Override
    public String getProtocol() {
        return null;
    }
 
    @Override
    public BaseResponse checkEs(BaseRequest request) {
        return null;
    }
}