-
懒羊羊
2024-04-11 89f41617d8c15a43029629f9f097238e04a78a63
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package com.jcdm.main.plcserver.conf;
 
/**
 * @ClassName: OPCElement
 * @Description: PC和PLC通信使用的OPCserver上的标记名称列表
 */
public class OPCElement {
 
 
    /**
     * OP230
     */
    public static final String PACK_OP010_RecordSN = "PACK.OP1010.RecordSN";//请求下发SN号
    public static final String PACK_OP230_RecordData = "PACK.OP230.RecordData";//请求记录数据
 
    /**
     * OP240
     */
    public static final String PACK_OP240_RecordData = "PACK.OP240.RecordData";//请求记录数据
 
    public static final String PACK_OP240_AngleResult = "PACK.OP240.AngleResult";//请求拧紧数据
 
    /**
     * OP250
     */
    public static final String PACK_OP250_RecordData = "PACK.OP250.RecordData";//请求记录数据
 
    public static final String PACK_OP250_AngleResult = "PACK.OP250.AngleResult";//请求拧紧数据
 
    /**
     * OP380
     */
    public static final String PACK_OP380_RecordData = "PACK.OP380.RecordData";//请求记录数据
 
    public static final String PACK_OP380_AngleResult = "PACK.OP380.AngleResult";//请求拧紧数据
 
    /**
     * OP300
     */
    public static final String PACK_OP300_RecordData = "PACK.OP300.RecordData";//请求记录数据
 
    public static final String PACK_OP300_AngleResult = "PACK.OP300.AngleResult";//请求拧紧数据
    /**
     * OP270
     */
    public static final String PACK_OP270_RecordData = "PACK.OP270.RecordData";//请求记录数据
 
    public static final String PACK_OP270_AngleResult = "PACK.OP270.AngleResult";//请求拧紧数据
    /**
     * OP270
     */
    public static final String PACK_OP370_Grade = "PACK.OP370.Grade";//请求记录数据
 
 
 
 
 
 
 
}