ControlJob.cs 1.1 KB

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