using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_Tasks.PP仓 { public class PPReadData { /// /// 堆垛机状态 /// public short R_PP_Status; /// /// 堆垛机手自动状态 /// public short R_PP_AutoStatus; /// /// 当前正在执行的任务号 /// public int R_PP_TaskNum; /// /// 堆垛机工作状态 /// public short R_PP_WorkStatus; /// /// 作业类型 /// public short R_PP_WorkType; /// /// 托盘类型 /// public short R_PP_TrayType; ///站台 /// /// 读取条码 /// public string R_PP_Boxcode; /// /// 握手信号 /// public bool R_PP_HandShake4; /// /// 1联机 0脱机 /// public bool R_PP_Online4; /// /// 1空闲 0繁忙 /// public bool R_PP_Free4; /// /// 1有货 0无货 /// public bool R_PP_Goods4; /// /// 1故障 0正常 /// public bool R_PP_Alarm4; /// /// 请求信号(读) /// public bool R_PP_STB4; /// /// 响应信号(读) /// public bool R_PP_ACK4; /// /// 请求信号(写) /// public bool W_PP_STB4; /// /// 响应信号(写) /// public bool W_PP_ACK4; /// /// 握手信号 /// public bool R_PP_HandShake5; /// /// 1联机 0脱机 /// public bool R_PP_Online5; /// /// 1空闲 0繁忙 /// public bool R_PP_Free5; /// /// 1有货 0无货 /// public bool R_PP_Goods5; /// /// 1故障 0正常 /// public bool R_PP_Alarm5; /// /// 请求信号(读) /// public bool R_PP_STB5; /// /// 响应信号(读) /// public bool R_PP_ACK5; /// /// 请求信号(写) /// public bool W_PP_STB5; /// /// 响应信号(写) /// public bool W_PP_ACK5; /// /// 握手信号 /// public bool R_PP_HandShake6; /// /// 1联机 0脱机 /// public bool R_PP_Online6; /// /// 1空闲 0繁忙 /// public bool R_PP_Free6; /// /// 1有货 0无货 /// public bool R_PP_Goods6; /// /// 1故障 0正常 /// public bool R_PP_Alarm6; /// /// 请求信号(读) /// public bool R_PP_STB6; /// /// 响应信号(读) /// public bool R_PP_ACK6; /// /// 请求信号(写) /// public bool W_PP_STB6; /// /// 响应信号(写) /// public bool W_PP_ACK6; /// /// 握手信号 /// public bool R_PP_HandShake7; /// /// 1联机 0脱机 /// public bool R_PP_Online7; /// /// 1空闲 0繁忙 /// public bool R_PP_Free7; /// /// 1有货 0无货 /// public bool R_PP_Goods7; /// /// 1故障 0正常 /// public bool R_PP_Alarm7; /// /// 请求信号(读) /// public bool R_PP_STB7; /// /// 响应信号(读) /// public bool R_PP_ACK7; /// /// 请求信号(写) /// public bool W_PP_STB7; /// /// 响应信号(写) /// public bool W_PP_ACK7; } }