hdy
2024-03-22 4ca73594828312fba2fd60afaae3928981ca6701
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
26
27
28
29
30
31
32
33
34
package com.jcdm.main.plcserver.conf;
 
/**
 * @ClassName: OPCElement
 * @Description: PC和PLC通信使用的OPCserver上的标记名称列表
 */
public class OPCElement {
 
 
    /**
     * OP230
     */
    public static final String OP_OP010_RecordSN = "TestOP.OP1010.RecordSN";//请求下发SN号
    public static final String OP_OP230_RecordData = "OP.OP230.RecordData";//请求记录数据
 
    /**
     * OP240
     */
    public static final String OP_OP240_RecordData = "OP.OP240.RecordData";//请求记录数据
 
    public static final String OP_OP240_AngleResult = "OP.OP240.AngleResult";//请求拧紧数据
 
    /**
     * OP250
     */
    public static final String OP_OP250_RecordData = "OP.OP250.RecordData";//请求记录数据
 
    public static final String OP_OP250_AngleResult = "OP.OP250.AngleResult";//请求拧紧数据
 
 
 
 
 
}