You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
948 B
36 lines
948 B
using System.Collections.Generic;
|
|
using Gumming.Execute.Workflow;
|
|
|
|
namespace Gumming.Execute
|
|
{
|
|
public class Wafer
|
|
{
|
|
public int No { get; set; }
|
|
public string Name { get; set; }
|
|
public List<StationWork> Works { get; set; } = new List<StationWork>();
|
|
|
|
public volatile FlowUnit CurrentFlow;
|
|
|
|
public volatile StationWork CurrentStationWork;
|
|
|
|
|
|
//在花篮
|
|
public bool InCs { get; set; } = true;
|
|
public bool Done { get; set; }
|
|
public int CurrentPos { get; set; }
|
|
public Wafer Clone()
|
|
{
|
|
return (Wafer)this.MemberwiseClone();
|
|
}
|
|
public Wafer(string name, FlowUnit[] flow, int i)
|
|
{
|
|
No = i + 1;
|
|
Name = name;
|
|
/*for (FlowUnit s : flow) {
|
|
StationWork work = new StationWork();
|
|
work.flowUnit = s;
|
|
works.add(work);
|
|
}*/
|
|
}
|
|
}
|
|
} |