using System.ComponentModel; namespace WCS.Entity.Protocol.Truss { /// /// 桁架 码垛工位 /// public interface Truss530 : IProtocol { /// /// 垛形 /// [Description("垛形")] public short Type { get; set; } /// /// 最大码垛数量 /// [Description("最大码垛数量")] public short MaxQuantity { get; set; } /// /// 码垛结束 /// [Description("码垛结束")] public cmdType CmdType { get; set; } /// /// 凭证号,触发信号 /// [Description("凭证号,触发信号")] public short VoucherNo { get; set; } } }