You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Mesnac.Compressor.Entity
|
|
|
|
|
{
|
|
|
|
|
public class WorkTray
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public WorkTray()
|
|
|
|
|
{
|
|
|
|
|
//应该进行属性初始化
|
|
|
|
|
RfidNum = "";
|
|
|
|
|
SemiBarcode = "";
|
|
|
|
|
MainBarcode = "";
|
|
|
|
|
InsertTime = "";
|
|
|
|
|
SaveData = null;
|
|
|
|
|
OKNG = -1;
|
|
|
|
|
workOrder = false;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// rfid号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string RfidNum { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///数据库内部条码号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SemiBarcode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 产品条码号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string MainBarcode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 插入时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string InsertTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// PLC保存数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
public object[] SaveData { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 质量,1为ok,2为ng
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int OKNG { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否下发工作指令
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool workOrder { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|