MET08DDUPSP1TBI - v2.43.4 - Builtin MonA,

Run with layer and 1T
This commit is contained in:
2022-09-07 12:38:37 -07:00
parent 90c44cffbb
commit 65b4ae1463
15 changed files with 859 additions and 185 deletions

View File

@ -1,68 +1,80 @@
using System.Text.Json.Serialization;
namespace Adaptation.FileHandlers.TIBCO.Transport;
public class Run
{
public long RDS_NO { get; set; }
public long WO_NO { get; set; }
public int WO_STEP { get; set; }
public int CASS_NO { get; set; }
public int REACTOR { get; set; }
public int VER_WFR_CNT { get; set; }
public int LOAD_WFR_CNT { get; set; }
public string ENTER_BY { get; set; }
public string ENTER_DTM { get; set; }
public string VER_SIG { get; set; }
public string VER_SIG_DTM { get; set; }
public string PRE_SIG { get; set; }
public string PRE_SIG_DTM { get; set; }
public string LOAD_SIG { get; set; }
public string LOAD_SIG_DTM { get; set; }
public string WFR_SIG { get; set; }
public string WFR_SIG_DTM { get; set; }
public string UNLOAD_SIG { get; set; }
public string UNLOAD_SIG_DTM { get; set; }
public string POST_SIG { get; set; }
public string POST_SIG_DTM { get; set; }
public string FINAL_SIG { get; set; }
public string FINAL_SIG_DTM { get; set; }
public string SCHED_DT { get; set; }
// public string SPECIAL_INST { get; set; }
public double REACT_IDLE_TIME { get; set; }
public int SHIFT { get; set; }
public string LOAD_LOCK_SIDE { get; set; }
public string ADE_READ { get; set; }
public string INJECTORS { get; set; }
public string TUBE_ID { get; set; }
public int TUBE_GRADE { get; set; }
public string SUSCEPTOR_ID { get; set; }
public string SUPP_INST { get; set; }
public string SUPP_ENTRY_ID { get; set; }
public string SUPP_ENTRY_DTM { get; set; }
public string SUPP_SIG { get; set; }
public string SUPP_SIG_DTM { get; set; }
public string REACT_ACT_ESC_DTM { get; set; }
public int SCHED_WFR_QTY { get; set; }
// public string VER_COMMENT { get; set; }
// public string LOAD_COMMENT { get; set; }
// public string UNLOAD_COMMENT { get; set; }
// public string FINAL_COMMENT { get; set; }
public int CURR_WFR_CNT { get; set; }
public int CURR_WFR_CNT_REJ { get; set; }
public string CUST_CAPTIVE { get; set; }
public string CUST_NAME { get; set; }
public string CUST_NO { get; set; }
public string LOT_NO { get; set; }
public string PART_NO { get; set; }
public string PS_NO { get; set; }
public string REACTOR_TYPE { get; set; }
public string RECIPE_NAME { get; set; }
public int RECIPE_NO { get; set; }
public string SPEC_TYPE { get; set; }
public int WFR_UNLOAD_DAYS { get; set; }
public int WFR_UNLOAD_NIGHTS { get; set; }
public int WFR_UNLOAD_QTY { get; set; }
public string CASS_ID_SAP { get; set; }
public string REACT_TOOL_ID { get; set; }
[JsonPropertyName("rds_no")]
public int RdsNo { get; set; }
[JsonPropertyName("max_rds_layer_keys_mv_no")]
public int MaxRdsLayerKeysMvNo { get; set; }
[JsonPropertyName("max_part_no")]
public string MaxPartNo { get; set; }
[JsonPropertyName("max_part_no_substr_0")]
public string MaxPartNoSubstr0 { get; set; }
[JsonPropertyName("max_part_no_substr_1")]
public string MaxPartNoSubstr1 { get; set; }
[JsonPropertyName("part_no")]
public string PartNo { get; set; }
[JsonPropertyName("reactor")]
public int Reactor { get; set; }
[JsonPropertyName("ps_no")]
public string PSN { get; set; }
[JsonPropertyName("load_lock_side")]
public string LoadLockSide { get; set; }
[JsonPropertyName("reactor_type")]
public string ReactorType { get; set; }
[JsonPropertyName("recipe_name")]
public string RecipeName { get; set; }
[JsonPropertyName("recipe_no")]
public int RecipeNo { get; set; }
[JsonPropertyName("spec_type")]
public string SpecType { get; set; }
[JsonPropertyName("react_tool_id")]
public string ReactToolId { get; set; }
[JsonPropertyName("epi_layer")]
public string EpiLayer { get; set; }
[JsonPropertyName("epi_step")]
public int? EpiStep { get; set; }
[JsonPropertyName("epi_step_lsid")]
public string EpiStepLsid { get; set; }
[JsonPropertyName("epi_dopant")]
public string EpiDopant { get; set; }
[JsonPropertyName("epi_thick_min")]
public double? EpiThickMin { get; set; }
[JsonPropertyName("epi_thick_max")]
public double? EpiThickMax { get; set; }
[JsonPropertyName("epi_thick_targ")]
public double? EpiThickTarg { get; set; }
[JsonPropertyName("epi_res_min")]
public double? EpiResMin { get; set; }
[JsonPropertyName("epi_res_max")]
public double? EpiResMax { get; set; }
[JsonPropertyName("epi_res_targ")]
public double? EpiResTarg { get; set; }
}