using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IWareCC.Conveyor.Entity { public class OpcReadItem { /// /// 1心跳 /// public string HandShake { get; set; } /// /// 2设备编号 /// public string ConveyorNo { get; set; } /// /// 3任务号 /// public string TaskNo { get; set; } /// /// 4当前目标位置 /// public string Destination { get; set; } /// /// 5是否有报警 /// public string Alarm { get; set; } /// /// 6光电1状态 /// public string Ph1 { get; set; } /// /// /// /// 7光电2状态 /// /// public string Ph2 { get; set; } /// /// 8任务完成 /// public string Taskfinish { get; set; } /// /// 9报警代码 /// public string AlarmCode { get; set; } /// /// 10外形检测(0没有到位,1到位不正常,2到位正常) /// public string Shape { get; set; } /// /// 11任务收到确认 /// public string Ack { get; set; } /// /// 12模式 /// public string Mode { get; set; } /// /// 13状态 /// public string State { get; set; } } }