EAP
This commit is contained in:
41
MQ/body/AlarmListBody.cs
Normal file
41
MQ/body/AlarmListBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
33
MQ/body/AlarmReportBody.cs
Normal file
33
MQ/body/AlarmReportBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
31
MQ/body/ContainerPlaceBody.cs
Normal file
31
MQ/body/ContainerPlaceBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
37
MQ/body/ControlStateChangeBody.cs
Normal file
37
MQ/body/ControlStateChangeBody.cs
Normal 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
32
MQ/body/EAPStatusBody.cs
Normal 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
35
MQ/body/ECChangeBody .cs
Normal 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
33
MQ/body/ECRequestBody.cs
Normal 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>();
|
||||
}
|
||||
}
|
||||
}
|
||||
32
MQ/body/EquipmentStateChangeBody.cs
Normal file
32
MQ/body/EquipmentStateChangeBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
27
MQ/body/EstablishCommunicationBody.cs
Normal file
27
MQ/body/EstablishCommunicationBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
31
MQ/body/FormatErrorBody.cs
Normal file
31
MQ/body/FormatErrorBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
32
MQ/body/LSTAMaterialReceivedBody.cs
Normal file
32
MQ/body/LSTAMaterialReceivedBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
37
MQ/body/MachineDataBody.cs
Normal file
37
MQ/body/MachineDataBody.cs
Normal 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>();
|
||||
}
|
||||
}
|
||||
}
|
||||
30
MQ/body/MaintenanceBody.cs
Normal file
30
MQ/body/MaintenanceBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
40
MQ/body/MaterialHoldBody.cs
Normal file
40
MQ/body/MaterialHoldBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
33
MQ/body/MaterialReceivedBody.cs
Normal file
33
MQ/body/MaterialReceivedBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
39
MQ/body/MaterialReceivedForTransBody.cs
Normal file
39
MQ/body/MaterialReceivedForTransBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
40
MQ/body/MaterialRemovedBody.cs
Normal file
40
MQ/body/MaterialRemovedBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
40
MQ/body/MaterialScrapBody.cs
Normal file
40
MQ/body/MaterialScrapBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
42
MQ/body/MaterialStoredToContainerBody.cs
Normal file
42
MQ/body/MaterialStoredToContainerBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
34
MQ/body/MaterialStoredToPalletBody.cs
Normal file
34
MQ/body/MaterialStoredToPalletBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
43
MQ/body/PalletCompletedBody.cs
Normal file
43
MQ/body/PalletCompletedBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
32
MQ/body/PalletRemovedBody.cs
Normal file
32
MQ/body/PalletRemovedBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
42
MQ/body/ProcessFinishBody.cs
Normal file
42
MQ/body/ProcessFinishBody.cs
Normal 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>();
|
||||
}
|
||||
}
|
||||
}
|
||||
30
MQ/body/ProcessProgramChangeBody.cs
Normal file
30
MQ/body/ProcessProgramChangeBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
31
MQ/body/ProcessRecipeSelectedBody.cs
Normal file
31
MQ/body/ProcessRecipeSelectedBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
33
MQ/body/ProcessStartedBody.cs
Normal file
33
MQ/body/ProcessStartedBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
32
MQ/body/RecipeListSendBody.cs
Normal file
32
MQ/body/RecipeListSendBody.cs
Normal 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
38
MQ/body/ReturnBody.cs
Normal 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
28
MQ/body/S5F3Body.cs
Normal 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
36
MQ/body/SVListBody.cs
Normal 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
47
MQ/body/SlotListBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
32
MQ/body/UserLoggedOnBody.cs
Normal file
32
MQ/body/UserLoggedOnBody.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user