MET08THFTIRSTRATUS - v2.47.0 - Job - Layer

This commit is contained in:
Mike Phares 2022-10-13 09:26:53 -07:00
parent dd4dba16d4
commit 2467f32867
2 changed files with 8 additions and 0 deletions

View File

@ -33,6 +33,7 @@ public class Description : IDescription, Shared.Properties.IDescription
public string Cassette { get; set; }
public string GradeStdDev { get; set; }
public string HeaderUniqueId { get; set; }
public string Layer { get; set; }
public string MeanThickness { get; set; }
public string PassFail { get; set; }
public string RDS { get; set; }
@ -69,6 +70,7 @@ public class Description : IDescription, Shared.Properties.IDescription
nameof(Cassette),
nameof(GradeStdDev),
nameof(HeaderUniqueId),
nameof(Layer),
nameof(MeanThickness),
nameof(PassFail),
nameof(RDS),
@ -200,6 +202,7 @@ public class Description : IDescription, Shared.Properties.IDescription
Cassette = processData.Cassette,
GradeStdDev = processData.StdDev,
HeaderUniqueId = detail.HeaderUniqueId,
Layer = processData.Layer,
MeanThickness = processData.MeanThickness,
PassFail = detail.PassFail,
RDS = processData.RDS,
@ -253,6 +256,7 @@ public class Description : IDescription, Shared.Properties.IDescription
Cassette = nameof(Cassette),
GradeStdDev = nameof(GradeStdDev),
HeaderUniqueId = nameof(HeaderUniqueId),
Layer = nameof(Layer),
MeanThickness = nameof(MeanThickness),
PassFail = nameof(PassFail),
RDS = nameof(RDS),

View File

@ -25,6 +25,7 @@ public partial class ProcessData : IProcessData
public string Cassette { get; set; }
public string Date { get; set; }
public string FilePath { get; set; }
public string Layer { get; set; }
public string MeanThickness { get; set; }
public string Employee { get; set; }
public string PSN { get; set; }
@ -379,6 +380,7 @@ public partial class ProcessData : IProcessData
string text;
string zone;
string batch;
string layer;
string title;
string reactor;
string cassette;
@ -416,6 +418,7 @@ public partial class ProcessData : IProcessData
psn = descriptor.PSN;
rds = descriptor.RDS;
zone = descriptor.Zone;
layer = descriptor.Layer;
reactor = descriptor.Reactor;
employee = descriptor.Employee;
title = !string.IsNullOrEmpty(batch) ? batch : cassette;
@ -424,6 +427,7 @@ public partial class ProcessData : IProcessData
Date = date;
Zone = zone;
Batch = batch;
Layer = layer;
Title = title;
Reactor = reactor;
Cassette = cassette;