using System.ComponentModel; using WCS.Protocol.SX.Protocol.Robot; namespace WCS.Protocol.SX.Robot { /// /// 机械臂码垛工位DB530 /// [Description("530")] public interface IRobot530 : IProtocol { [Description("垛任务号")] int PalletID { get; set; } [Description("垛型")] short Type { get; set; } /// /// 最大码垛数量 /// [Description("最大数量")] public short MaxQty { get; set; } [Description("指令类型")] public RobotStationCmd Cmd{ get; set; } /// /// 凭证号,触发信号 /// [Description("凭证号")] public short VoucherNo { get; set; } } }