package org.springblade.common.constant;
|
|
/**
|
* @author zhongrj
|
*/
|
public interface FtpConstant {
|
|
/**
|
* sql connect
|
*/
|
//String sql_connect_dev = "jdbc:mysql://223.82.109.183:2083/zhbay";
|
|
/**
|
* sql connect
|
*/
|
String sql_connect_dev = "jdbc:mysql://223.82.109.183:2083/zhbay?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true&allowPublicKeyRetrieval=true";
|
|
//ftp服务器IP地址
|
String ftpHost_dev = "192.168.0.107";
|
|
//ftp服务器IP地址
|
// String ftpHost_dev = "47.49.21.194";
|
|
//ftp服务器端口
|
int ftpPort = 21;
|
|
//ftp服务器用户名
|
// String ftpUserName = "ylcs";
|
String ftpUserName = "anonymous";
|
|
|
//ftp服务器密码
|
//String ftpPassword = "Yly@123";
|
String ftpPassword = "";
|
|
|
//ftp服务器路径
|
String ftpPath = "anbao/";
|
|
/**
|
* 本地路径
|
*/
|
// String localPath = "/home/song/anbao/";
|
String localPath = "D:\\anbao\\";
|
|
//minio本地保存地址
|
//String MinioPath = "/usr/local/minio/data/zhba/upload/picture";
|
String MinioPath = "D:\\ftptp\\";
|
|
|
// String jsonUrl = "/usr/local/minio/data/zhba/upload/picture";
|
String jsonUrl = "D:\\anbao\\";
|
}
|