SchedulerWaferHolderModuleTime.cs 1001 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using MECF.Framework.Common.Equipment;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace MECF.Framework.Common.CommonData
  8. {
  9. public class SchedulerWaferHolderModuleTime
  10. {
  11. /// <summary>
  12. /// 模块
  13. /// </summary>
  14. public string Module { get; set; }
  15. /// <summary>
  16. /// 模块类型
  17. /// </summary>
  18. public ModuleType ModuleType { get; set; }
  19. /// <summary>
  20. /// 调度计划时间
  21. /// </summary>
  22. public DateTime ScheduleStartTime { get; set; }
  23. /// <summary>
  24. /// 实际工艺启动时间
  25. /// </summary>
  26. public DateTime StartTime { get; set; }
  27. /// <summary>
  28. /// 调度所在索引
  29. /// </summary>
  30. public int SchedulerIndex { get; set; }
  31. /// <summary>
  32. /// 工艺时长
  33. /// </summary>
  34. public int ProcessTimeLength { get; set; }
  35. }
  36. }