Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/MECF/Framework/Common/Jobs/LotInfo.cs

34 lines
583 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
using System;
using System.Runtime.Serialization;
using MECF.Framework.Common.Equipment;
namespace MECF.Framework.Common.Jobs
{
[Serializable]
public class LotInfo
{
[DataMember]
public Guid InnerId { get; set; }
[DataMember]
public string Name { get; set; }
public DateTime StartTime { get; set; }
public DateTime EndTime { get; set; }
public string CarrierId { get; set; }
public ModuleName PortIn { get; set; }
public ModuleName PortOut { get; set; }
public int TotalWafer { get; set; }
public LotInfo()
{
InnerId = Guid.NewGuid();
}
}
}