using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_QuartzJob.DeviceBase; namespace WIDESEAWCS_Tasks { public class PinMachineCommand : DeviceCommand { /// /// 物流线运行信号 /// public short LogisticsLineRunningSignal { get; set; } /// /// 插拔钉机运行信号 /// public short PlugPinMachineRunningSignal { get; set; } /// /// 要料请求-上层 /// public short MaterialRequestUpper { get; set; } /// /// 出料请求-上层 /// public short OutputRequestUpper { get; set; } /// /// 插拔钉盘可出料-上层 /// public short PlugPinTrayOutputReadyUpper { get; set; } /// /// 要料请求-下层 /// public short MaterialRequestLower { get; set; } /// /// 出料请求-下层 /// public short OutputRequestLower { get; set; } /// /// 插拔钉盘可出料-下层 /// public short PlugPinTrayOutputReadyLower { get; set; } } }