1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.billion.main.plcServer.conf;
|
| /**
| * @ClassName: OPCElement
| * @Description: PC和PLC通信使用的OPCserver上的标记名称列表
| */
| public class OPCElement {
|
|
| /**
| * C005
| */
|
|
| public static final String PLC1_C005_RecordData = "PLC1.C005.RecordData";//请求记录数据
| public static final String PLC1_C005_WorkOrderRequest = "PLC1.C005.WorkOrderRequest";//请求拧紧数据
|
|
| }
|
|