java110
2020-06-28 101d9189aef7772d4a0df2b8a9d2ae5f25ab1160
java110-config/src/main/java/com/java110/config/properties/code/Java110Properties.java
@@ -20,6 +20,13 @@
    private boolean autoReloadComponent = false;
    private String ftpServer;
    private int ftpPort;
    private String ftpUserName;
    private String ftpUserPassword;
    private String ftpPath;
    public String getMappingPath() {
        return mappingPath;
    }
@@ -51,4 +58,45 @@
    public void setAutoReloadComponent(boolean autoReloadComponent) {
        this.autoReloadComponent = autoReloadComponent;
    }
    public String getFtpServer() {
        return ftpServer;
    }
    public void setFtpServer(String ftpServer) {
        this.ftpServer = ftpServer;
    }
    public String getFtpUserName() {
        return ftpUserName;
    }
    public void setFtpUserName(String ftpUserName) {
        this.ftpUserName = ftpUserName;
    }
    public String getFtpUserPassword() {
        return ftpUserPassword;
    }
    public void setFtpUserPassword(String ftpUserPassword) {
        this.ftpUserPassword = ftpUserPassword;
    }
    public int getFtpPort() {
        return ftpPort;
    }
    public void setFtpPort(int ftpPort) {
        this.ftpPort = ftpPort;
    }
    public String getFtpPath() {
        return ftpPath;
    }
    public void setFtpPath(String ftpPath) {
        this.ftpPath = ftpPath;
    }
}