ControlJob.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 string LotName { get; set; }
  16. public Guid LotInnerId { get; set; }
  17. public List<WaferInfo> LotWafers { get; set; }
  18. public string CarrierID { get; set; }
  19. public bool IsPreJobCleanDone { get; set; }
  20. public bool IsPostJobCleanDone { get; set; }
  21. public WaferSize JobWaferSize { get; set; }
  22. public DateTime StartTime { get; set; }
  23. public DateTime EndTime { get; set; }
  24. public ControlJobInfo()
  25. {
  26. ProcessJobNameList = new List<string>();
  27. State = EnumControlJobState.Queued;
  28. InnerId = Guid.NewGuid();
  29. }
  30. public void SetState(EnumControlJobState state)
  31. {
  32. State = state;
  33. }
  34. }
  35. }