提交 | 用户 | 时间
|
3e03af
|
1 |
package com.jcdm.main.plcserver.conf; |
C |
2 |
|
|
3 |
/** |
|
4 |
* @ClassName: OPCElement |
|
5 |
* @Description: PC和PLC通信使用的OPCserver上的标记名称列表 |
|
6 |
*/ |
|
7 |
public class OPCElement { |
|
8 |
|
|
9 |
/** |
|
10 |
* OP010 |
|
11 |
*/ |
|
12 |
private static final String OP010_ITEM = "CFL3ZZ.OP010.";// |
|
13 |
public static final String OP010_SaveRequest = OP010_ITEM + "SaveRequest";//请求保存 |
|
14 |
public static final String OP010_MesSaveFeed = OP010_ITEM + "MesSaveFeed";//Mes保存完成 |
|
15 |
public static final String OP010_CodeCheck = OP010_ITEM + "CodeCheck";//请求检索条码 |
|
16 |
public static final String OP010_MesCodeCheckFeed = OP010_ITEM + "MesCodeCheckFeed";//MES检索完成 |
|
17 |
|
|
18 |
|
|
19 |
/** |
|
20 |
* OP100 |
|
21 |
*/ |
|
22 |
private static final String OP020_ITEM = "OP.OP100.";// |
059083
|
23 |
private static final String OP120_ITEM_HX = "CFL4HX.OP120.";// |
W |
24 |
private static final String OP120_ITEM_ZZ = "CFL4ZZ.OP120.";// |
c6aaad
|
25 |
private static final String OP121_ITEM_ZZ = "CFL4ZZ.OP121.";// |
3e03af
|
26 |
public static final String OP020_SaveRequest = OP020_ITEM + "SaveRequest";//请求保存 |
059083
|
27 |
public static final String OP120_SaveRequestLast = OP120_ITEM_HX + "SaveRequestLast";//请求保存 |
3e03af
|
28 |
public static final String OP020_MesSaveFeed = OP020_ITEM + "MesSaveFeed";//Mes保存完成 |
C |
29 |
|
059083
|
30 |
public static final String OP120_ZZ_CODE_CHECK = OP120_ITEM_ZZ + "CodeCheck";//请求保存 |
c6aaad
|
31 |
public static final String OP121_ZZ_CODE_CHECK = OP121_ITEM_ZZ + "CodeCheckFeed";//请求保存 |
9e6d86
|
32 |
public static final String OP050_HX_CODE_CHECK = "CFL4HX.OP050.CodeCheck";//请求保存 |
W |
33 |
|
|
34 |
//返修监听点位-465 |
|
35 |
public static final String OP465_ZZ_CODE_CHECK = "CFL4ZZ.OP465.CodeCheck"; |
|
36 |
//返修监听点位-355 |
|
37 |
public static final String OP355_ZZ_CODE_CHECK = "CFL4ZZ.OP355.CodeCheck"; |
3946f8
|
38 |
public static final String OP695_ZZ_CODE_CHECK = "CFL4ZZ.OP695.CodeCheck"; |
W |
39 |
public static final String OP755_ZZ_CODE_CHECK = "CFL4ZZ.OP755.CodeCheck"; |
059083
|
40 |
|
W |
41 |
public static final String SN_CHECK = "SNRetrieval"; |
9e6d86
|
42 |
public static final String SAVE_DATA = "SaveData"; |
W |
43 |
public static final String QUALIFIED = "合格"; |
|
44 |
public static final String UN_QUALIFIED = "不合格"; |
059083
|
45 |
|
3e03af
|
46 |
|
C |
47 |
|
|
48 |
} |