using System.ComponentModel; namespace WCS.Entity.Protocol.Station { /// /// DB520 /// public interface IStation520 : IProtocol { /// /// 任务号 /// [Description("任务号")] int TaskNumber { get; set; } /// /// 起始地址 /// [Description("起始地址")] short GoodsStart { get; set; } /// /// 目标地址 /// [Description("目标地址")] short GoodsEnd { get; set; } /// /// 运行模式 /// [Description("任务类型")] ModeEunm Mode { get; set; } /// /// 指令类型 /// [Description("指令类型")] CmdTypeEnum CmdType { get; set; } /// /// 凭证号 每次累加 /// [Description("凭证号")] short VoucherNo { get; set; } } }