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;
| }
|
|
| }
|
|