[성현모] Extract 프로젝트 추가

This commit is contained in:
SHM
2026-02-11 10:44:06 +09:00
parent 580257fff2
commit 122d84bc01
7 changed files with 284 additions and 19 deletions

View File

@ -0,0 +1,28 @@
 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; }
}
}