From 101d9189aef7772d4a0df2b8a9d2ae5f25ab1160 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期日, 28 六月 2020 22:15:17 +0800
Subject: [PATCH] 优化添加用户

---
 java110-config/src/main/java/com/java110/config/properties/code/Java110Properties.java |   78 +++++++++++++++++++++++++++++++++++++++
 1 files changed, 78 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 53b7917..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
@@ -14,6 +14,19 @@
 
     private String mappingPath;
 
+    private String wxAppId;
+
+    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;
     }
@@ -21,4 +34,69 @@
     public void setMappingPath(String mappingPath) {
         this.mappingPath = mappingPath;
     }
+
+    public String getWxAppId() {
+        return wxAppId;
+    }
+
+    public void setWxAppId(String wxAppId) {
+        this.wxAppId = wxAppId;
+    }
+
+    public String getWxAppSecret() {
+        return wxAppSecret;
+    }
+
+    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