Ready to test Max RDS
This commit is contained in:
@ -20,6 +20,7 @@ public class AppSettings
|
||||
[Display(Name = "Inbound Api Allowed IP List"), Required] public string InboundApiAllowedIPList { get; set; }
|
||||
[Display(Name = "MonA Resource"), Required] public string MonAResource { get; set; }
|
||||
[Display(Name = "MonA Site"), Required] public string MonASite { get; set; }
|
||||
[Display(Name = "Oi 2 Sql Connection String"), Required] public string Oi2SqlConnectionString { get; set; }
|
||||
[Display(Name = "OI Export Path"), Required] public string OIExportPath { get; set; }
|
||||
[Display(Name = "URLs"), Required] public string URLs { get; set; }
|
||||
[Display(Name = "Working Directory Name"), Required] public string WorkingDirectoryName { get; set; }
|
||||
@ -47,6 +48,7 @@ public class AppSettings
|
||||
appSettings.InboundApiAllowedIPList,
|
||||
appSettings.MonAResource,
|
||||
appSettings.MonASite,
|
||||
appSettings.Oi2SqlConnectionString,
|
||||
appSettings.OIExportPath,
|
||||
appSettings.URLs,
|
||||
appSettings.WorkingDirectoryName);
|
||||
|
31
Archive/Models/Binder/Max.cs
Normal file
31
Archive/Models/Binder/Max.cs
Normal file
@ -0,0 +1,31 @@
|
||||
namespace OI.Metrology.Archive.Models.Binder;
|
||||
|
||||
public class Max
|
||||
{
|
||||
|
||||
#pragma warning disable
|
||||
|
||||
public string reactor_type { get; set; }
|
||||
public int reactor { get; set; }
|
||||
public string ls_id { get; set; }
|
||||
public string zone { get; set; }
|
||||
public string load_lock_side { get; set; }
|
||||
public int rds_no { get; set; }
|
||||
public string ps_no { get; set; }
|
||||
public string recipe_name { get; set; }
|
||||
public int recipe_no { get; set; }
|
||||
public string spec_type { get; set; }
|
||||
public string spec_thick_mtool { get; set; }
|
||||
public string spec_thick_mrecipe { get; set; }
|
||||
public string spec_res_mtool { get; set; }
|
||||
public string spec_res_mrecipe { get; set; }
|
||||
public string spec_cres_mtool { get; set; }
|
||||
public string spec_cres_mrecipe { get; set; }
|
||||
public int ci_no { get; set; }
|
||||
public string spec_clean_tool { get; set; }
|
||||
public int? mv_no { get; set; }
|
||||
public string scan_tool { get; set; }
|
||||
public string spec_surfscan_recipe { get; set; }
|
||||
public int? spec_ss_samp_qty { get; set; }
|
||||
|
||||
}
|
Reference in New Issue
Block a user