dc/MQ/body/MaterialReceivedForTransBody.cs

40 lines
1.1 KiB
C#
Raw Normal View History

2022-04-01 17:03:54 +08:00
#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;
}
}