懒羊羊
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;
 
/**
 * @ClassName: OPCElement
 * @Description: PC和PLC通信使用的OPCserver上的标记名称列表
 */
public class OPCElement {
 
    /**
     * OP140
     */
    public static final String ITEM = "OP.OP140.";//
    public static final String ZYYSTART = ITEM + "ZYYSTART";//心跳
    public static final String ZYYEND = ITEM + "ZYYEND";//
    public static final String P1 = ITEM + "P1";//心跳
 
}