智慧保安后台管理-外网-验收版本
Administrator
2021-09-09 6daa128048cd93c300b0f9c32d79700ea70d075f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package org.springblade.common.constant;
 
/**
 * @author zhongrj
 */
public interface FtpConstant {
 
    /**
     * sql connect
     */
    String sql_connect_dev = "jdbc:mysql://223.82.109.183:2083/zhbawy?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true&allowPublicKeyRetrieval=true";
 
    /**
     * sql connect
     */
    //String sql_connect_dev = "jdbc:mysql://localhost:2083/zhbawy?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.110";
 
    /**
     * ftp服务器IP地址
     */
    //String ftpHost_dev = "172.19.1.30";
 
    /**
     * ftp服务器端口
     */
    int ftpPort = 21;
 
    /**
     * ftp服务器用户名
     */
    //String ftpUserName = "yly";
    String ftpUserName = "anonymous";
 
    /**
     * ftp服务器密码
     */
    //String ftpPassword = "Yly@123";
    String ftpPassword = "";
 
 
    /**
     * ftp服务器路径
     */
    //String ftpPath = "yly/anbao/";
    String ftpPath = "anbao/";
 
    /**
     * 本地路径
     */
    //String localPath = "/home/zhongsong/anbao/";
    String localPath = "D:\\anbao\\";
 
 
    //minio内网ip
    //String ip = "http://47.49.21.216:9000";
    String ip = "http://223.82.109.183:2081";
 
    //String jsonUrl = "/home/zhongsong/anbao/";
    String jsonUrl = "D:\\anbao\\";
}