NgMsgData.cs
577 字节
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RemoteSheardObject
{
public class NgMsgData
{
// NG口位置,1=左侧,2=右侧
public int ngPos = 0;
// 物料类型:pizzaBox,pcb,tray,reel
public string mType;
// 条码
public string barcode;
// 库位号
public string posName;
// 出入库类型,1=入库,2=出库
public string type;
// NG原因
public string ngMsg;
}
}