From 56c25bcb0dc03aae78aba23f32ebbf548b866332 Mon Sep 17 00:00:00 2001
From: xing <xingjs@qq.com>
Date: 星期三, 22 二月 2023 14:11:09 +0800
Subject: [PATCH] 20230221@xingjs@提交官网一张图相关内容接口

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

diff --git a/src/main/java/com/lf/server/config/PropertiesConfig.java b/src/main/java/com/lf/server/config/PropertiesConfig.java
index 4770547..e24cf98 100644
--- a/src/main/java/com/lf/server/config/PropertiesConfig.java
+++ b/src/main/java/com/lf/server/config/PropertiesConfig.java
@@ -10,9 +10,6 @@
 @Configuration
 @SuppressWarnings("AlibabaCommentsMustBeJavadocFormat")
 public class PropertiesConfig {
-    @Value("${sys.fme.url}")
-    private String fmeUrl;
-
     @Value("${sys.path.download}")
     private String downloadPath;
 
@@ -31,59 +28,48 @@
     // @Value("${spring.datasource.druid.stat-view-servlet.login-password}")
     private String druidPwd;
 
-    public String getFmeUrl() {
-        return fmeUrl;
-    }
+    @Value("${sys.path.publishMpt}")
+    private String publishMptPath;
 
-    public void setFmeUrl(String fmeUrl) {
-        this.fmeUrl = fmeUrl;
-    }
+    @Value("${sys.path.publish3dml}")
+    private String publish3dmlPath;
+
+    @Value("${sys.tile_path}")
+    private String tilePath;
 
     public String getDownloadPath() {
         return downloadPath;
-    }
-
-    public void setDownloadPath(String downloadPath) {
-        this.downloadPath = downloadPath;
     }
 
     public String getUploadPath() {
         return uploadPath;
     }
 
-    public void setUploadPath(String uploadPath) {
-        this.uploadPath = uploadPath;
-    }
-
     public String getSharePath() {
         return sharePath;
-    }
-
-    public void setSharePath(String sharePath) {
-        this.sharePath = sharePath;
     }
 
     public String getTempPath() {
         return tempPath;
     }
 
-    public void setTempPath(String tempPath) {
-        this.tempPath = tempPath;
-    }
-
     public String getDruidUser() {
         return druidUser;
-    }
-
-    public void setDruidUser(String druidUser) {
-        this.druidUser = druidUser;
     }
 
     public String getDruidPwd() {
         return druidPwd;
     }
 
-    public void setDruidPwd(String druidPwd) {
-        this.druidPwd = druidPwd;
+    public String getPublishMptPath() {
+        return publishMptPath;
+    }
+
+    public String getPublish3dmlPath() {
+        return publish3dmlPath;
+    }
+
+    public String getTilePath() {
+        return tilePath;
     }
 }

--
Gitblit v1.9.3