12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System;
- using System.Collections.Generic;
- using Aitex.Core.Common;
- namespace MECF.Framework.Common.Jobs
- {
- [Serializable]
- public class ControlJobInfo
- {
- public string Name { get; set; }
- public Guid InnerId { get; set; }
- public string Module { get; set; }
-
- public List<string> ProcessJobNameList { get; set; }
- public EnumControlJobState State { get; set; }
- public string LotName { get; set; }
- public Guid LotInnerId { get; set; }
- public List<WaferInfo> LotWafers { get; set; }
- public string CarrierID { get; set; }
- public bool IsPreJobCleanDone { get; set; }
- public bool IsPostJobCleanDone { get; set; }
- public DateTime CreateTime { get; set; }
- public DateTime BeginTime { get; set; }
- public DateTime EndTime { get; set; }
- public ControlJobInfo()
- {
- ProcessJobNameList = new List<string>();
- State = EnumControlJobState.Queued;
- InnerId = Guid.NewGuid();
- }
- public void SetState(EnumControlJobState state)
- {
- State = state;
- }
- }
- }
|