Mapping change
This commit is contained in:
parent
5139c15b67
commit
36291ae434
@ -121,13 +121,12 @@ public class FileRead : Shared.FileRead, IFileRead
|
|||||||
StringBuilder results = new();
|
StringBuilder results = new();
|
||||||
char del = '\t';
|
char del = '\t';
|
||||||
SECS.Description x = descriptions[0];
|
SECS.Description x = descriptions[0];
|
||||||
_ = results.Append(x.MesEntity).Append(del)
|
_ = results.Append(x.PSN).Append(del)
|
||||||
.Append(x.Reactor).Append(del)
|
.Append(x.Reactor).Append(del)
|
||||||
|
.Append(logistics.MesEntity).Append(del)
|
||||||
.Append(x.RDS).Append(del)
|
.Append(x.RDS).Append(del)
|
||||||
.Append(x.Recipe).Append(del)
|
.Append(x.Recipe).Append(del)
|
||||||
.Append(x.PSN).Append(del)
|
.Append(x.Employee).Append(del);
|
||||||
.Append(x.Employee).Append(del)
|
|
||||||
.Append(logistics.MesEntity).Append(del);
|
|
||||||
return results.ToString();
|
return results.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -14,23 +14,24 @@ public class Description : IDescription, Shared.Properties.IDescription
|
|||||||
public int Count { get; set; }
|
public int Count { get; set; }
|
||||||
public int Index { get; set; }
|
public int Index { get; set; }
|
||||||
|
|
||||||
|
[JsonPropertyName("CURRENT_RECIPE_NAME")]
|
||||||
|
public string PSN { get; set; } // Part
|
||||||
|
|
||||||
|
[JsonPropertyName("LotID")]
|
||||||
|
public string Reactor { get; set; } // Process
|
||||||
|
|
||||||
public string MesEntity { get; set; }
|
public string MesEntity { get; set; }
|
||||||
public string Date { get; set; }
|
|
||||||
|
|
||||||
[JsonPropertyName("PATTERNTYPE")]
|
|
||||||
public string Employee { get; set; } // Item descriptor
|
|
||||||
|
|
||||||
[JsonPropertyName("SAMPLETYPE")]
|
|
||||||
public string PSN { get; set; } // Item descriptor
|
|
||||||
|
|
||||||
[JsonPropertyName("ID")]
|
[JsonPropertyName("ID")]
|
||||||
public string RDS { get; set; } // Lot
|
public string RDS { get; set; } // Lot
|
||||||
|
|
||||||
[JsonPropertyName("LotID")]
|
[JsonPropertyName("PATTERNTYPE")]
|
||||||
public string Reactor { get; set; } // Process
|
public string Recipe { get; set; } // Item descriptor
|
||||||
|
|
||||||
[JsonPropertyName("CURRENT_RECIPE_NAME")]
|
[JsonPropertyName("SAMPLETYPE")]
|
||||||
public string Recipe { get; set; } // Part
|
public string Employee { get; set; } // Item descriptor
|
||||||
|
|
||||||
|
public string Date { get; set; }
|
||||||
|
|
||||||
string IDescription.GetEventDescription() => "File Has been read and parsed";
|
string IDescription.GetEventDescription() => "File Has been read and parsed";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user