春风项目四线(合箱线、总装线)
cl
2024-03-05 0b13e2c2d85f3515bb20e9398529d128f9ad3a8f
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
package com.jcdm.main.plcserver.conf;
 
/**
 * @ClassName: OPCElement
 * @Description: PC和PLC通信使用的OPCserver上的标记名称列表
 */
public class OPCElement {
 
    /**
     * OP010
     */
    private static final String OP010_ITEM = "CFL3ZZ.OP010.";//
    public static final String OP010_SaveRequest = OP010_ITEM + "SaveRequest";//请求保存
    public static final String OP010_MesSaveFeed = OP010_ITEM + "MesSaveFeed";//Mes保存完成
    public static final String OP010_CodeCheck = OP010_ITEM + "CodeCheck";//请求检索条码
    public static final String OP010_MesCodeCheckFeed = OP010_ITEM + "MesCodeCheckFeed";//MES检索完成
 
 
    /**
     * OP100
     */
    private static final String OP020_ITEM = "OP.OP100.";//
    public static final String OP020_SaveRequest = OP020_ITEM + "SaveRequest";//请求保存
    public static final String OP020_MesSaveFeed = OP020_ITEM + "MesSaveFeed";//Mes保存完成
 
 
 
}