懒羊羊
2023-08-30 bf6c368992d6901135dd07434854940288a4163c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.example.opc;
 
import javax.swing.*;
import java.util.HashMap;
import java.util.Map;
 
public class GlobalVariable {
 
 
    public static JTextArea textArea;
 
    public static float zyyValue = 0;
    public static float zyyMaxValue = 0;
 
    public static boolean isSendValue = false;
 
}