using System; [System.Serializable] public class StackerData { /// /// 货物条码号 /// public string frontContainerCode; // /// // /// 货物条码号 // /// public string frontInstructionCode; //public string frontFrom; //public bool? frontStatus; /// /// 货物状态描述 /// public string frontStatusDescription; //public string backContainerCode; //public string backInstructionCode; //public string backTo; //public string backStatusDescription; public int roadway; /// /// 货物的排 /// public int frontRow; public int frontColumn; /// /// 货物的层 /// public int frontLayer; /// /// 货物的列 /// public int special1; /// /// 动作信号 /// public StackerForkActionEnum frontForkAction; public string frontForkActionDescription; public StackerForkCargoEnum frontForkCargo; //public int backRow; //public int backColumn; //public int backLayer; //public StackerForkActionEnum backForkAction; //public string backForkActionDescription; //public string taskType; //public string taskTypeDescription; /// /// 有货信号 /// public Boolean frontForkHasGoods; //public bool? backForkHasGoods; public string strategyCode; public string strategyName; //public string stageTrackLength; //public string realTrackLength; //public string moveDirection; /// /// 存放容器地址排 /// public int toRow; /// /// 货物存放容器地址列 /// public int toColumn; /// /// 货物存放容器地址层 /// public int toLayer; public int toCommand; public string toCommandDescription; public bool? stopWorking; public bool? frontContainerIsFull; public bool? backContainerIsFull; //public string futureFlow; //public string pastFlow; //public string moveLocation; //public string moveLocationFromLocation; //public string moveLocationToLocation; //public string moveLocationContainer; //public string moveLocationInstructionCode; }