namespace WCS.Entity.Protocol { /// /// /// public interface IStation520 : IProtocol { /// /// 任务号 /// int Tasknum { get; set; } /// /// 货物数条码 涂布入库口代表AGV任务 /// int Goodscode { get; set; } /// /// 货物数量(1.两个位置放1个货物,2.两个位置放2个货物) /// short Goodsnum { get; set; } /// /// 货物高度 /// short GoodsSize { get; set; } /// /// 起始地址 /// short Goodsstart { get; set; } /// /// 目标地址 /// short Goodsend { get; set; } /// /// 请求 /// IstationRequest Request { get; set; } /// /// 命令类型 /// IstationCmdType CmdType { get; set; } /// /// 凭证号 每次累加 /// short VoucherNo { get; set; } /// /// 输送机状态 /// IstationStatus Istation521Status { get; set; } } }