48 lines
1.2 KiB
C#
48 lines
1.2 KiB
C#
|
#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;
|
|||
|
}
|
|||
|
}
|