This commit is contained in:
chi
2020-04-17 08:17:10 +09:00
parent 6565f2bacc
commit a98072ab75
12 changed files with 492 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FTP_DB_Adapt
{
public class CSetting : arUtil.Setting
{
public string connstr { get; set; }
public string ftphost { get; set; }
public string ftpid { get; set; }
public string ftppw { get; set; }
public override void AfterLoad()
{
if (connstr == "")
connstr = "Data Source=10.131.15.18;Initial Catalog=EE;Persist Security Info=True;User ID=eeuser;Password=Amkor123!";
}
public override void AfterSave()
{
//throw new NotImplementedException();
}
}
}