You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
847 B
22 lines
847 B
namespace CK.SCP.GrupUniApi.Config
|
|
{
|
|
public class FtpConfig
|
|
{
|
|
public string 本地根目录 { get; set; } = "c:\\";
|
|
public string 本地接收目录 { get; set; } = "FromErp";
|
|
public string 本地发送目录 { get; set; } = "ToErp";
|
|
public string 本地备份目录 { get; set; } = "Bak";
|
|
|
|
public bool 是否执行FTP { get; set; } = true;
|
|
public string 服务器地址 { get; set; } = "127.0.0.1";
|
|
public string 端口 { get; set; } = "21";
|
|
public string 用户名 { get; set; } = "admin";
|
|
public string 密码 { get; set; } = "5E0AFEB85CA001A3371A9F19E7EC4DFF";
|
|
public string 远程根目录 { get; set; } = "/";
|
|
public string 远程ToErp目录 { get; set; } = "in";
|
|
public string 远程FromErp目录 { get; set; } = "toWms";
|
|
public string 远程Bak目录 { get; set; } = "bak";
|
|
|
|
|
|
}
|
|
}
|