MET08THFTIRSTRATUS - v2.47.0 - Job - Layer

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

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;