春风项目四线(合箱线、总装线)
cl
2024-03-05 0b13e2c2d85f3515bb20e9398529d128f9ad3a8f
提交 | 用户 | 时间
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.";//
23     public static final String OP020_SaveRequest = OP020_ITEM + "SaveRequest";//请求保存
24     public static final String OP020_MesSaveFeed = OP020_ITEM + "MesSaveFeed";//Mes保存完成
25
26
27
28 }