This commit is contained in:
13118993771@163.com
2022-04-01 17:03:54 +08:00
commit 5e9d0f1e2d
1528 changed files with 1474439 additions and 0 deletions

41
MQ/body/AlarmListBody.cs Normal file
View File

@@ -0,0 +1,41 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class AlarmListBody
{
public List<Alarm> alarmList;
public AlarmListBody()
{
alarmList = new List<Alarm>();
}
}
[Serializable]
public class Alarm
{
public string ALCD;
public string ALID;
public string ALTX;
}
}

View File

@@ -0,0 +1,33 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class AlarmReportBody
{
public string eventTimestamp;
public string spoolingFlag;
public string stateFlag;
public string alarmCode;
public string alarmStatus;
public string alarmCategory;
public string alarmText;
}
}

View File

@@ -0,0 +1,31 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class ContainerPlaceBody
{
public string eventTimestamp;
public string spoolingFlag;
public string locationId;
public string containerId;
public string portId;
}
}

View File

@@ -0,0 +1,37 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class ControlStateChangeBody
{
public string eventTimestamp;
public string spoolingFlag;
public string stateFlag;
public string currentControlState;
public string previousControlState;
public ControlStateChangeBody()
{
spoolingFlag = "0";
stateFlag = "0";
}
}
}

32
MQ/body/EAPStatusBody.cs Normal file
View File

@@ -0,0 +1,32 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class EapStatusBody
{
public string ip;
public string deviceId;
public string port;
public string equipmentStatus;
public string eapStatus;
public string mqStatus;
}
}

35
MQ/body/ECChangeBody .cs Normal file
View File

@@ -0,0 +1,35 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class ECChangeBody
{
public string eventTimestamp;
public string spoolingFlag;
public Dictionary<string, string> ECList;
public ECChangeBody()
{
ECList = new Dictionary<string, string>();
}
}
}

33
MQ/body/ECRequestBody.cs Normal file
View File

@@ -0,0 +1,33 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class ECRequestBody
{
public Dictionary<string, string> ECList;
public ECRequestBody()
{
ECList = new Dictionary<string, string>();
}
}
}

View File

@@ -0,0 +1,32 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
class EquipmentStateChangeBody
{
public string eventTimestamp;
public string spoolingFlag;
public string stateFlag;
public string currentEquipmentState;
public string previousEquipmentState;
}
}

View File

@@ -0,0 +1,27 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class EstablishCommunication
{
public string eventTimestamp;
}
}

View File

@@ -0,0 +1,31 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class FormatErrorBody
{
public string eventName;
public string paramName;
public string paramValue;
public string paramFormat;
public string standardFormat;
}
}

View File

@@ -0,0 +1,32 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class LSTAMaterialReceivedBody
{
public string eventTimestamp;
public string spoolingFlag;
public string virtualSubstrateId;
public string locationId;
public string portId;
public string materialStatus;
}
}

View File

@@ -0,0 +1,37 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class MachineDataBody
{
public string eventTimestamp;
public string spoolingFlag;
public string stateFlag;
public Dictionary<string,string> machineData;
public MachineDataBody()
{
spoolingFlag = "0";
stateFlag = "0";
machineData = new Dictionary<string, string>();
}
}
}

View File

@@ -0,0 +1,30 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class MaintenanceBody
{
public string eventTimestamp;
public string spoolingFlag;
public string maintenanceFlag;
}
}

View File

@@ -0,0 +1,40 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class MaterialHoldBody
{
public string eventTimestamp;
public string spoolingFlag;
public string stateFlag;
public string materialStatus;
public string substrateId;
public string locationId;
public string target_A;
public string target_B;
public string target_C;
public string target_D;
public string reroutet_A;
public string reroutet_B;
public string reroutet_C;
public string reroutet_D;
}
}

View File

@@ -0,0 +1,33 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class MaterialReceivedBody
{
public string eventTimestamp;
public string spoolingFlag;
public string stateFlag;
public string locationId;
public string substrateId;
public string ppExecName;
public string materialStatus;
}
}

View File

@@ -0,0 +1,39 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class MaterialReceivedForTransBody
{
public string eventTimestamp;
public string spoolingFlag;
public string materialStatus;
public string substrateId;
public string locationId;
public string target_A;
public string target_B;
public string target_C;
public string target_D;
public string reroutet_A;
public string reroutet_B;
public string reroutet_C;
public string reroutet_D;
}
}

View File

@@ -0,0 +1,40 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class MaterialRemovedBody
{
public string eventTimestamp;
public string spoolingFlag;
public string stateFlag;
public string materialStatus;
public string substrateId;
public string locationId;
public string target_A;
public string target_B;
public string target_C;
public string target_D;
public string reroutet_A;
public string reroutet_B;
public string reroutet_C;
public string reroutet_D;
}
}

View File

@@ -0,0 +1,40 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class MaterialScrapBody
{
public string eventTimestamp;
public string spoolingFlag;
public string stateFlag;
public string materialStatus;
public string substrateId;
public string locationId;
public string target_A;
public string target_B;
public string target_C;
public string target_D;
public string reroutet_A;
public string reroutet_B;
public string reroutet_C;
public string reroutet_D;
}
}

View File

@@ -0,0 +1,42 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class MaterialStoredToContainerBody
{
public string eventTimestamp;
public string spoolingFlag;
public string materialStatus;
public string substrateId;
public string locationId;
public string containerId;
public string portId;
public string slotId;
public string target_A;
public string target_B;
public string target_C;
public string target_D;
public string reroutet_A;
public string reroutet_B;
public string reroutet_C;
public string reroutet_D;
}
}

View File

@@ -0,0 +1,34 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class MaterialStoredToPalletBody
{
public string eventTimestamp;
public string locationId;
public string spoolingFlag;
public string port;
public string palletId;
public string substrateId;
public string materialStatus;
}
}

View File

@@ -0,0 +1,43 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class PalletCompletedBody
{
public string eventTimestamp;
public string locationId;
public string spoolingFlag;
public string port;
public string palletId;
public string grade;
public List<ContainerSlotMap> containerSlotMap;
public PalletCompletedBody() => containerSlotMap = new List<ContainerSlotMap>();
}
[Serializable]
public class ContainerSlotMap
{
public string slotNo;
public string substrateId;
public string materialStatus;
}
}

View File

@@ -0,0 +1,32 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class PalletRemovedBody
{
public string eventTimestamp;
public string locationId;
public string spoolingFlag;
public string port;
public string palletId;
}
}

View File

@@ -0,0 +1,42 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class ProcessFinishBody
{
public string eventTimestamp;
public string spoolingFlag;
public string stateFlag;
public string ppExecName;
public string materialStatus;
public string substrateId;
public string currentEquipmentState;
public string previousEquipmentState;
public Dictionary<string,string> processData;
public ProcessFinishBody()
{
spoolingFlag = "0";
stateFlag = "0";
processData = new Dictionary<string, string>();
}
}
}

View File

@@ -0,0 +1,30 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class ProcessProgramChangeBody
{
public string eventTimestamp;
public string spoolingFlag;
public string ppChangeName;
public string ppChangeStatus;
}
}

View File

@@ -0,0 +1,31 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class ProcessRecipeSelectedBody
{
public string eventTimestamp;
public string spoolingFlag;
public string stateFlag;
public string substrateId;
public string ppExecName;
}
}

View File

@@ -0,0 +1,33 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class ProcessStartedBody
{
public string eventTimestamp;
public string spoolingFlag;
public string stateFlag;
public string currentEquipmentState;
public string substrateId;
public string ppExecName;
public string previousEquipmentState;
}
}

View File

@@ -0,0 +1,32 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class RecipeListSendBody
{
public List<string> recipeList;
public RecipeListSendBody()
{
recipeList = new List<string>();
}
}
}

38
MQ/body/ReturnBody.cs Normal file
View File

@@ -0,0 +1,38 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/28 10:05:52
* 版本V1.0.0
* 描述:
*
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
*
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
/// <summary>
/// ReturnBody 的摘要说明
/// </summary>
class ReturnBody
{
public string returnCode;
public ReturnBody(int returnCode)
{
this.returnCode = returnCode.ToString();
}
}
}

28
MQ/body/S5F3Body.cs Normal file
View File

@@ -0,0 +1,28 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class S5F3Body
{
public string eventTimestamp;
public string enableAlarmState;
}
}

36
MQ/body/SVListBody.cs Normal file
View File

@@ -0,0 +1,36 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class SVListBody
{
public string eventTimestamp;
public string CommunicationState;
public string ControlState;
public string PreviousControlState;
public string CurrentEquipmentState;
public string PreviousEquipmentState;
public string PPExecName;
public string SpoolingState;
public string SpoolCountActual;
public string SpoolCountTotal;
}
}

47
MQ/body/SlotListBody.cs Normal file
View File

@@ -0,0 +1,47 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class SlotListBody
{
public string eventTimestamp;
public string spoolingFlag;
public List<SlotList> slotList;
public SlotListBody() => slotList = new List<SlotList>();
}
[Serializable]
public class SlotList
{
public string locationId;
public string substrateId;
public string materialStatus;
public string target_A;
public string target_B;
public string target_C;
public string target_D;
public string reroute_A;
public string reroute_B;
public string reroute_C;
public string reroute_D;
}
}

View File

@@ -0,0 +1,32 @@
#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class UserLoggedOnBody
{
public string eventTimestamp;
public string spoolingFlag;
public string userLogFlag;
public string currentUserName;
public string previousUserName;
}
}