using Adaptation.FileHandlers.txt;
Sequence as a string Job Update using null
This commit is contained in:
@ -9,6 +9,8 @@ internal class Row
|
||||
|
||||
public Row(Run run, int i)
|
||||
{
|
||||
Index = i;
|
||||
//
|
||||
Lot = run.Header.Lot;
|
||||
Session = run.Header.Session;
|
||||
DcnAllMin = run.Summary.DcnAllMin;
|
||||
@ -318,6 +320,8 @@ internal class Row
|
||||
DnnBin8 = run.Wafers[i].DnnBin8;
|
||||
}
|
||||
|
||||
public int Index { get; }
|
||||
//
|
||||
public string Lot { get; }
|
||||
public string Session { get; }
|
||||
public string DcnAllMin { get; }
|
||||
|
@ -40,7 +40,7 @@ internal class Run
|
||||
int columns = 0;
|
||||
StringBuilder stringBuilder = new();
|
||||
results.Add($"\"Count\",{jsonElements?.Length}");
|
||||
results.Add($"\"{nameof(logistics.Sequence)}\",{logistics.Sequence}");
|
||||
results.Add($"\"{nameof(logistics.Sequence)}\",\"{logistics.Sequence}\"");
|
||||
results.Add($"\"{nameof(logistics.MesEntity)}\",\"{logistics.MesEntity}\"");
|
||||
string dateTimeFromSequence = logistics.DateTimeFromSequence.ToString("MM/dd/yyyy hh:mm:ss tt");
|
||||
for (int i = 0; i < jsonElements?.Length;)
|
||||
|
Reference in New Issue
Block a user