Administrator
2021-08-21 75d710137ad9098e36e41f6ce8f2ccde0b6becc4
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
package org.springblade.common.constant;
 
/**
 * @author zhongrj
 */
public interface FtpConstant {
 
    /**
     * ftp服务器IP地址
     */
    String ftpHost = "192.168.0.105";
 
    /**
     * ftp服务器端口
     */
    int ftpPort = 21;
 
    /**
     * ftp服务器用户名
     */
    String ftpUserName = "yly";
 
    /**
     * ftp服务器密码
     */
    String ftpPassword = "Yly@123";
 
    /**
     * 本地路径
     */
    String localPath = "D:\\anbao";
 
    /**
     * 文件名
     */
    String fileName = "wsql.json";
}