dc/MQ/body/PalletCompletedBody.cs

50 lines
1.3 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;
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 locationId;
public string spoolingFlag;
public string port;
public string palletId;
public string grade;
public List<ContainerSlotMap> containerSlotMap;
public PalletCompletedBody() => containerSlotMap = new List<ContainerSlotMap>();
2023-02-23 11:33:23 +08:00
private string _eventTimestamp;
public string eventTimestamp
{
get { return _eventTimestamp; }
set { _eventTimestamp = DateTime.Parse(value).ToString("s"); }
}
2022-04-01 17:03:54 +08:00
}
[Serializable]
public class ContainerSlotMap
{
public string slotNo;
public string substrateId;
public string materialStatus;
}
}