| 123456789101112131415161718192021222324252627282930313233343536 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace MECF.Framework.Common.CommonData{    public class SchedulerWaferHolderTime    {        /// <summary>        /// Wafer holder ID        /// </summary>        public string WaferHolderId { get; set; }        /// <summary>        /// 模块时间轴集合        /// </summary>        public List<SchedulerWaferHolderModuleTime> ModuleTimes { get; set; }        /// <summary>        /// 剩余时长        /// </summary>        public double ResProcessLength { get; set; }        /// <summary>        /// 最后的调度索引        /// </summary>        public int LastSequenceIndex { get; set; }        /// <summary>        /// 释放        /// </summary>        public void Dispose()        {            ModuleTimes.Clear();        }    }}
 |