MET08THFTIRSTRATUS - v2.47.0 - Job -

Work Oder, Reactor and Slot
This commit is contained in:
2022-10-10 19:39:25 -07:00
parent 8e16a0bae9
commit dd4dba16d4
13 changed files with 940 additions and 64 deletions

View File

@ -40,6 +40,7 @@ public class Description : IDescription, Shared.Properties.IDescription
public string Title { get; set; }
public string UniqueId { get; set; }
public string Wafer { get; set; }
public string Zone { get; set; }
//
public string Mean { get; set; }
public string Position { get; set; }
@ -74,7 +75,8 @@ public class Description : IDescription, Shared.Properties.IDescription
nameof(Slot),
nameof(Title),
nameof(UniqueId),
nameof(Wafer)
nameof(Wafer),
nameof(Zone)
};
return results;
}
@ -193,7 +195,7 @@ public class Description : IDescription, Shared.Properties.IDescription
Lot = processData.Batch,
PSN = processData.PSN,
Reactor = processData.Reactor,
Recipe = processData.Recipe,
Recipe = detail.Recipe,
//
Cassette = processData.Cassette,
GradeStdDev = processData.StdDev,
@ -205,6 +207,7 @@ public class Description : IDescription, Shared.Properties.IDescription
Title = processData.Title,
UniqueId = detail.UniqueId,
Wafer = detail.Wafer,
Zone = processData.Zone,
//
Mean = detail.Mean,
Position = detail.Position,
@ -257,6 +260,7 @@ public class Description : IDescription, Shared.Properties.IDescription
Title = nameof(Title),
UniqueId = nameof(UniqueId),
Wafer = nameof(Wafer),
Zone = nameof(Zone),
//
Mean = nameof(Mean),
Position = nameof(Position),