From 47b7ec2b0cbca0f217f634d2831aa30d72d85449 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 25 六月 2020 13:35:15 +0800
Subject: [PATCH] 完善操作手册 流程

---
 java110-config/src/main/java/com/java110/config/properties/code/Java110Properties.java |   58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 58 insertions(+), 0 deletions(-)

diff --git a/java110-config/src/main/java/com/java110/config/properties/code/Java110Properties.java b/java110-config/src/main/java/com/java110/config/properties/code/Java110Properties.java
index cd65404..8fa0312 100644
--- a/java110-config/src/main/java/com/java110/config/properties/code/Java110Properties.java
+++ b/java110-config/src/main/java/com/java110/config/properties/code/Java110Properties.java
@@ -18,6 +18,15 @@
 
     private String wxAppSecret;
 
+    private boolean autoReloadComponent = false;
+
+    private String ftpServer;
+    private int ftpPort;
+    private String ftpUserName;
+    private String ftpUserPassword;
+
+    private String ftpPath;
+
     public String getMappingPath() {
         return mappingPath;
     }
@@ -41,4 +50,53 @@
     public void setWxAppSecret(String wxAppSecret) {
         this.wxAppSecret = wxAppSecret;
     }
+
+    public boolean getAutoReloadComponent() {
+        return autoReloadComponent;
+    }
+
+    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;
+    }
 }

--
Gitblit v1.8.0