using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WCS.Entity.Protocol
{
///
/// 堆垛机协议,WCS写入
///
public interface ISC520 : IProtocol
{
///
/// 握手
///
Int16 Handshake{ get; set; }
Int16 Startnumber1 { get; set; }
Int16 Endnumber2 { get; set; }
///
/// 货物类型
///
Int16 GoodsType { get; set; }
///
/// 高低速模式
///
SCSpeedMode SpeedMode { get; set; }
///
/// 起始行
///
Int16 SLine { get; set; }
///
/// 起始列
///
Int16 SCol { get; set; }
///
/// 起始层
///
Int16 SLayer { get; set; }
///
/// 起始深度
///
Int16 SDepth { get; set; }
///
/// 目标行
///
Int16 ELine { get; set; }
///
/// 目标列
///
Int16 ECol { get; set; }
///
/// 目标层
///
Int16 ELayer { get; set; }
///
/// 目标深度
///
Int16 EDepth { get; set; }
///
/// 任务号
///
Int32 TaskID { get; set; }
///
/// 触发
///
Int16 Trigger { get; set; }
///
/// 触发
///
Int16 FinishedACK { get; set; }
}
}