Wrong job name, added slot and ToLocalTime()

This commit is contained in:
2023-03-23 10:48:57 -07:00
parent 36291ae434
commit 1aa0e9affa
3 changed files with 12 additions and 9 deletions

View File

@ -14,13 +14,14 @@ public class Description : IDescription, Shared.Properties.IDescription
public int Count { get; set; }
public int Index { get; set; }
public string MesEntity { get; set; }
public string Date { 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; }
[JsonPropertyName("ID")]
public string RDS { get; set; } // Lot
@ -31,7 +32,8 @@ public class Description : IDescription, Shared.Properties.IDescription
[JsonPropertyName("SAMPLETYPE")]
public string Employee { get; set; } // Item descriptor
public string Date { get; set; }
[JsonPropertyName("SLOT_NUMBER")]
public string SlotNumber { get; set; } // Item descriptor
string IDescription.GetEventDescription() => "File Has been read and parsed";
@ -68,6 +70,6 @@ public class Description : IDescription, Shared.Properties.IDescription
List<IDescription> IDescription.GetDescriptions(IFileRead fileRead, Logistics logistics, List<Test> tests, IProcessData iProcessData) =>
throw new NotImplementedException();
internal static string GetDateFormat() => "MM/dd/yyyy hh:mm:ss tt";
internal static string GetDateFormat() => "MM/dd/yyyy HH:mm:ss";
}