27 lines
823 B
C#
27 lines
823 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Data.Common;
|
|
using System.Data.SqlClient;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using SystemX.Product.TRA.UIControl;
|
|
|
|
namespace SystemX.Product.TRA.DataManager
|
|
{
|
|
public static class DMCommon
|
|
{
|
|
public static string SummaryHistTable = "HIST_TesterSummary";
|
|
public static string SummaryLogTable = "HIST_LogSummary";
|
|
public static string ResultLogTable = "HIST_TestResult";
|
|
|
|
//default, longterm 스위칭할때 필요
|
|
public const string SummaryLogTableDefault = "HIST_LogSummary";
|
|
public const string ResultLogTableDefault = "HIST_TestResult";
|
|
|
|
public static int nDefaultScanTime = 1800;
|
|
public static int nFullScanTime = 7200;
|
|
}
|
|
}
|