29 lines
792 B
C#
29 lines
792 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SystemX.Product.CP.TRA.Extract
|
|
{
|
|
public class Config
|
|
{
|
|
public string CPXV2Server { get; set; }
|
|
public string Server { get; set; }
|
|
public string DataBase { get; set; }
|
|
public string SummaryTable { get; set; }
|
|
public string ResultTable { get; set; }
|
|
public string User { get; set; }
|
|
public string Passwd { get; set; }
|
|
|
|
|
|
public string ProductNo { get; set; }
|
|
public string TestCode { get; set; }
|
|
public string StartDate { get; set; }
|
|
public string EndDate { get; set; }
|
|
public string MO { get; set; }
|
|
|
|
public int RowCount { get; set; }
|
|
}
|
|
}
|