cl
2024-03-07 a5b351156c343e707cf977b9e76ac2cfc9e64259
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.jcdm.main.plcserver.conf;
 
/**
 * @ClassName: OPCElement
 * @Description: PC和PLC通信使用的OPCserver上的标记名称列表
 */
public class OPCElement {
 
 
    /**
     * OP010
     */
    public static final String OP_OP010_RecordSN = "OP.OP010.RecordSN";//请求下发SN号
    public static final String OP_OP010_RecordData = "OP.OP010.RecordData";//请求记录数据
 
    /**
     * OP020
     */
    public static final String OP_OP020_RecordData = "OP.OP020.RecordData";//请求记录数据
 
 
 
 
 
}