ControlJob.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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 ControlJobInfo()
  26. {
  27. ProcessJobNameList = new List<string>();
  28. State = EnumControlJobState.Queued;
  29. InnerId = Guid.NewGuid();
  30. }
  31. public void SetState(EnumControlJobState state)
  32. {
  33. State = state;
  34. }
  35. }
  36. }