严智鑫
2024-09-05 7da8422f45751fffd5666a0260196a3d9605b7dc
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
package com.mes.job;
 
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
 
import java.net.Socket;
 
/**
 * @Author : yanzhxiin
 * @Date: 2024/8/20 11:19
 * @Description:
 */
@Component
@Slf4j
public class CacheGlassTask {
 
    public static String engineerId = "";
 
//    @Scheduled(fixedDelay = 1000)
    public void plcHomeEdgTask() {
        Socket socket = null;
    }
 
 
}