55 lines
1.7 KiB
C#
55 lines
1.7 KiB
C#
|
|
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;
|
|
|
|
}
|