Add IndexOf and AttemptCounter properties to WSRequest and Description classes; implement getValue function in recipes-and-patterns.js

This commit is contained in:
2025-10-13 17:43:00 -07:00
parent 48ad90c0f1
commit ccba3b8dba
5 changed files with 18 additions and 9 deletions

View File

@ -13,11 +13,13 @@ public class WSRequest
{
public int Id { get; set; }
public string AttemptCounter { get; set; }
public string Batch { get; set; }
public string Cassette { get; set; }
public string CellName { get; set; }
public string Date { get; set; }
public string FilePath { get; set; }
public string IndexOf { get; set; }
public string MeanThickness { get; set; }
public string Operator { get; set; }
public string PSN { get; set; }
@ -43,9 +45,11 @@ public class WSRequest
Details = new List<Stratus.Detail>();
//Header
{
AttemptCounter = x.AttemptCounter;
Batch = x.Lot; // different name
Cassette = x.Cassette;
Date = x.Date;
IndexOf = x.IndexOf;
MeanThickness = x.MeanThickness;
Operator = x.Employee; // different name
PSN = x.PSN;