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