24 lines
551 B
Java
24 lines
551 B
Java
package com.fjy.spring.properties;
|
|
|
|
import lombok.Data;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
/**
|
|
* @author F嘉阳
|
|
* @date 2018-05-07 19:52
|
|
*/
|
|
@Data
|
|
public class FtpProperties {
|
|
//服务器地址名称
|
|
private String server = "104.223.24.81";
|
|
//端口号
|
|
private int port = 21;
|
|
//用户名称
|
|
private String username = "cms";
|
|
//密码
|
|
private String password = "imis2";
|
|
//工作目录
|
|
private String location = null;
|
|
}
|