ControlJob.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. using System;
  2. using System.Collections.Generic;
  3. using Aitex.Core.Common;
  4. namespace MECF.Framework.Common.Jobs
  5. {
  6. [Serializable]
  7. public class ControlJobInfo
  8. {
  9. public string Name { get; set; }
  10. public Guid InnerId { get; set; }
  11. public bool BeenPosted { get; set; }
  12. public string Module { get; set; }
  13. public List<string> ProcessJobNameList { get; set; }
  14. public EnumControlJobState State { get; set; }
  15. public EnumJetCtrlJobState JetState { get; set; }
  16. public string LotName { get; set; }
  17. public Guid LotInnerId { get; set; }
  18. public List<WaferInfo> LotWafers { get; set; }
  19. public string CarrierID { get; set; }
  20. public bool IsPreJobCleanDone { get; set; }
  21. public bool IsPostJobCleanDone { get; set; }
  22. public WaferSize JobWaferSize { get; set; }
  23. public DateTime StartTime { get; set; }
  24. public DateTime EndTime { get; set; }
  25. public string PreJobClean { get; set; }
  26. public string PostJobClean { get; set; }
  27. public ControlJobInfo()
  28. {
  29. ProcessJobNameList = new List<string>();
  30. State = EnumControlJobState.Queued;
  31. InnerId = Guid.NewGuid();
  32. }
  33. public void SetState(EnumControlJobState state)
  34. {
  35. State = state;
  36. }
  37. }
  38. }