1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.jcdm.main.plcserver.conf;
|
| /**
| * @ClassName: OPCElement
| * @Description: PC和PLC通信使用的OPCserver上的标记名称列表
| */
| public class OPCElement {
|
|
| /**
| * OP010
| */
| public static final String OP_OP010_RecordSN = "TestOP.OP1010.RecordSN";//请求下发SN号
| public static final String OP_OP230_RecordData = "TestOP.OP1010.RecordData";//请求记录数据
|
| /**
| * OP020
| */
| public static final String OP_OP240_RecordData = "TestOP.OP2020.RecordData";//请求记录数据
|
|
|
|
| }
|
|