97 lines
2.6 KiB
C#
97 lines
2.6 KiB
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.MoveAllFiles.OpenInsight;
|
|
|
|
public class Rds
|
|
{
|
|
[JsonPropertyName("keyId")]
|
|
public int KeyId { get; set; }
|
|
|
|
[JsonPropertyName("reactor")]
|
|
public int Reactor { get; set; }
|
|
|
|
// [JsonPropertyName("workOrder")]
|
|
// public int WorkOrder { get; set; }
|
|
|
|
// [JsonPropertyName("cassNo")]
|
|
// public int CassNo { get; set; }
|
|
|
|
// [JsonPropertyName("combStatus")]
|
|
// public string CombStatus { get; set; }
|
|
|
|
// [JsonPropertyName("partNo")]
|
|
// public int PartNo { get; set; }
|
|
|
|
// [JsonPropertyName("PSN")]
|
|
// public int PSN { get; set; }
|
|
|
|
// [JsonPropertyName("entryId")]
|
|
// public string EntryId { get; set; }
|
|
|
|
// [JsonPropertyName("entryDtm")]
|
|
// public string EntryDtm { get; set; }
|
|
|
|
// [JsonPropertyName("preEpiSig")]
|
|
// public string PreEpiSig { get; set; }
|
|
|
|
// [JsonPropertyName("preEpiSigDtm")]
|
|
// public string PreEpiSigDtm { get; set; }
|
|
|
|
// [JsonPropertyName("operatorIn")]
|
|
// public string OperatorIn { get; set; }
|
|
|
|
// [JsonPropertyName("dtmIn")]
|
|
// public string DtmIn { get; set; }
|
|
|
|
// [JsonPropertyName("operatorOut")]
|
|
// public string OperatorOut { get; set; }
|
|
|
|
// [JsonPropertyName("dtmOut")]
|
|
// public string DtmOut { get; set; }
|
|
|
|
// [JsonPropertyName("postEpiSig")]
|
|
// public string PostEpiSig { get; set; }
|
|
|
|
// [JsonPropertyName("postEpiSigDtm")]
|
|
// public string PostEpiSigDtm { get; set; }
|
|
|
|
// [JsonPropertyName("supVerSig")]
|
|
// public string SupVerSig { get; set; }
|
|
|
|
// [JsonPropertyName("supVerSigDtm")]
|
|
// public string SupVerSigDtm { get; set; }
|
|
|
|
// [JsonPropertyName("shipDtm")]
|
|
// public object ShipDtm { get; set; }
|
|
|
|
// [JsonPropertyName("subPartNo")]
|
|
// public int SubPartNo { get; set; }
|
|
|
|
// [JsonPropertyName("shipNo")]
|
|
// public object ShipNo { get; set; }
|
|
|
|
// [JsonPropertyName("cassWaferQty")]
|
|
// public int CassWaferQty { get; set; }
|
|
|
|
// [JsonPropertyName("loadLockSide")]
|
|
// public string LoadLockSide { get; set; }
|
|
|
|
// [JsonPropertyName("waferSize")]
|
|
// public string WaferSize { get; set; }
|
|
|
|
// [JsonPropertyName("reactorType")]
|
|
// public string ReactorType { get; set; }
|
|
|
|
[JsonPropertyName("prodSpec")]
|
|
public ProdSpec ProdSpec { get; set; }
|
|
|
|
// [JsonPropertyName("cleanInsp")]
|
|
// public List<CleanInsp> CleanInsp { get; set; }
|
|
|
|
// [JsonPropertyName("woMatQA")]
|
|
// public WoMatQA WoMatQA { get; set; }
|
|
|
|
// [JsonPropertyName("rdsLayers")]
|
|
// public List<RdsLayer> RdsLayers { get; set; }
|
|
} |