|
@@ -64,6 +64,7 @@ public class MesMsgUtils {
|
|
|
"AQDW",//请求查询质量数据报文
|
|
"AQDW",//请求查询质量数据报文
|
|
|
"MBDW",//绑定报文
|
|
"MBDW",//绑定报文
|
|
|
"MJBW",//解绑报文
|
|
"MJBW",//解绑报文
|
|
|
|
|
+ "VLDW",//校验冷板绑定报文
|
|
|
"MQDW",//上传质量数据报文
|
|
"MQDW",//上传质量数据报文
|
|
|
"MKSW", //工位开始工作报文
|
|
"MKSW", //工位开始工作报文
|
|
|
"MSBW",//上传设备状态报文
|
|
"MSBW",//上传设备状态报文
|
|
@@ -375,6 +376,9 @@ public class MesMsgUtils {
|
|
|
}else if(msg_type.equalsIgnoreCase("MJBW")){ // 解绑报文
|
|
}else if(msg_type.equalsIgnoreCase("MJBW")){ // 解绑报文
|
|
|
String msgType = msg_type;
|
|
String msgType = msg_type;
|
|
|
processMsgRet = formatBindResult(msg,channel_ip,msg_type,gw,msgType);
|
|
processMsgRet = formatBindResult(msg,channel_ip,msg_type,gw,msgType);
|
|
|
|
|
+ }else if(msg_type.equalsIgnoreCase("VLDW")){ // 校验冷板绑定报文
|
|
|
|
|
+ String msgType = msg_type;
|
|
|
|
|
+ processMsgRet = formatBindResult(msg,channel_ip,msg_type,gw,msgType);
|
|
|
}else if(msg_type.equalsIgnoreCase("MCSW")){ // 上传参数结果
|
|
}else if(msg_type.equalsIgnoreCase("MCSW")){ // 上传参数结果
|
|
|
String msgType = msg_type;
|
|
String msgType = msg_type;
|
|
|
processMsgRet = formatResult(msg,channel_ip,msg_type,gw,msgType);
|
|
processMsgRet = formatResult(msg,channel_ip,msg_type,gw,msgType);
|