using System.ComponentModel; namespace WCS.Protocol.SX.Station { /// /// 输送机状态读取协议 /// public interface IStation524 : IProtocol { /// /// 任务号 /// [Description("任务号")] int TaskNumber { get; set; } /// /// 起始地址 /// [Description("起始地址")] short GoodsStart { get; set; } /// /// 目标地址 /// [Description("目标地址")] short GoodsEnd { get; set; } /// /// 运行模式 /// [Description("运行模式")] StationMode Mode { get; set; } /// /// 指令回复 /// [Description("指令回复")] short CmdType { get; set; } /// /// 凭证号 每次累加 /// [Description("凭证号")] short VoucherNo { get; set; } /// /// 请求 /// [Description("请求")] short Request { get; set; } } }