using System.ComponentModel; using WCS.Entity.Protocol.Protocol.Robot; namespace WCS.Entity.Protocol.Robot { /// /// 机械臂码垛工位DB530 /// [Description("机械臂码垛工位DB531")] public interface IRobot530 : IProtocol { /// /// 垛形 /// [Description("垛形")] public short Type { get; set; } /// /// 最大码垛数量 /// [Description("最大码垛数量")] public short MaxQuantity { get; set; } /// /// 码垛结束 /// [Description("码垛结束")] public RobotCmdType CmdType { get; set; } /// /// 凭证号,触发信号 /// [Description("凭证号,触发信号")] public short VoucherNo { get; set; } } }