From 15375a1d0d07c61c132906ff8da45f67bcd711f6 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期四, 17 十一月 2022 15:51:05 +0800
Subject: [PATCH] 1

---
 src/main/java/com/lf/server/config/PropertiesConfig.java |   23 ++++++-----------------
 1 files changed, 6 insertions(+), 17 deletions(-)

diff --git a/src/main/java/com/lf/server/config/PropertiesConfig.java b/src/main/java/com/lf/server/config/PropertiesConfig.java
index ad0ae83..1c1c465 100644
--- a/src/main/java/com/lf/server/config/PropertiesConfig.java
+++ b/src/main/java/com/lf/server/config/PropertiesConfig.java
@@ -9,11 +9,8 @@
  */
 @Configuration
 public class PropertiesConfig {
-    @Value("${sys.path.import}")
-    private String importPath;
-
-    @Value("${sys.path.export}")
-    private String exportPath;
+    @Value("${sys.path.download}")
+    private String downloadPath;
 
     @Value("${sys.path.upload}")
     private String uploadPath;
@@ -46,20 +43,12 @@
         this.druidPwd = druidPwd;
     }
 
-    public String getImportPath() {
-        return importPath;
+    public String getDownloadPath() {
+        return downloadPath;
     }
 
-    public void setImportPath(String importPath) {
-        this.importPath = importPath;
-    }
-
-    public String getExportPath() {
-        return exportPath;
-    }
-
-    public void setExportPath(String exportPath) {
-        this.exportPath = exportPath;
+    public void setDownloadPath(String downloadPath) {
+        this.downloadPath = downloadPath;
     }
 
     public String getUploadPath() {

--
Gitblit v1.9.3