using System.ComponentModel; using System.ComponentModel.DataAnnotations; using WCS.Protocol.SX.Protocol.Robot; namespace WCS.Protocol.SX.Robot { /// /// 机械臂码垛工位DB531 /// [Description("531")] public interface IRobot531 : IProtocol { [Description("垛任务号")] int PalletID { get; set; } short Type { get; set; } /// /// 最大码垛数量 /// [Description("最大数量")] public short MaxQty { get; set; } /// /// 最大码垛数量 /// [Description("已码数量")] public short Qty { get; set; } /// /// 码垛结束 /// [Description("请求指令")] public RobotStationRqst Rqst { get; set; } /// /// 凭证号,触发信号 /// [Description("凭证号")] public short VoucherNo { get; set; } [MaxLength(72)] public int[] TaskArray { get; set; } } }