using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WCS.Entity.Protocol { /// /// 12 /// public interface IDRGV523 : IProtocol { /// /// 环穿故障 /// RGVFault Fault { get; set; } /// /// 工位1故障 /// RGVPlatformFault Fault1 { get; set; } /// /// 工位2故障 /// RGVPlatformFault Fault2 { get; set; } /// /// 环穿状态 /// RGVStatus Status { get; set; } /// /// 工位1状态 /// RGVPlatformStatus Status1 { get; set; } /// /// 工位2状态 /// RGVPlatformStatus Status2 { get; set; } } }