package org.springblade.common.constant;
|
|
/**
|
* @author zhongrj
|
*/
|
public interface FtpConstant {
|
|
/**
|
* sql connect
|
*/
|
// String sql_connect_dev = "jdbc:mysql://223.82.109.183:2083/zhbaw";
|
|
/**
|
* sql connect
|
*/
|
String sql_connect_dev = "jdbc:mysql://localhost:2083/zhbaw";
|
|
/**
|
* ftp服务器IP地址
|
*/
|
// String ftpHost_dev = "192.168.0.105";
|
|
/**
|
* ftp服务器IP地址
|
*/
|
String ftpHost_dev = "172.19.1.30";
|
|
/**
|
* ftp服务器端口
|
*/
|
int ftpPort = 21;
|
|
/**
|
* ftp服务器用户名
|
*/
|
String ftpUserName = "yly";
|
|
/**
|
* ftp服务器密码
|
*/
|
String ftpPassword = "Yly@123";
|
|
|
/**
|
* ftp服务器路径
|
*/
|
String ftpPath = "yly/anbao/";
|
|
/**
|
* 本地路径
|
*/
|
String localPath = "/home/zhongsong/anbao";
|
// String localPath = "D:\\anbao";
|
}
|