From fe33646ee6e2d1e57f2b51812e94983a0e9efb04 Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期日, 14 十二月 2025 16:51:28 +0800
Subject: [PATCH] feat: 修复统计

---
 ruoyi-common/src/main/java/com/ruoyi/common/config/LegacySystemConfig.java |   37 +++++++++++++++++++++++++++++++++++++
 1 files changed, 37 insertions(+), 0 deletions(-)

diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/config/LegacySystemConfig.java b/ruoyi-common/src/main/java/com/ruoyi/common/config/LegacySystemConfig.java
index 5038fe6..55b9de2 100644
--- a/ruoyi-common/src/main/java/com/ruoyi/common/config/LegacySystemConfig.java
+++ b/ruoyi-common/src/main/java/com/ruoyi/common/config/LegacySystemConfig.java
@@ -21,9 +21,16 @@
     /** 璋冨害鍗曞垱寤烘帴鍙h矾寰� */
     private String dispatchCreatePath = "/admin_save_24.gds";
     
+    /** 璋冨害鍗曟洿鏂版帴鍙h矾寰勶紙杞﹁締/浜哄憳鍙樻洿锛� */
+    private String dispatchUpdatePath = "/admin_save_25.asp";
+    
     /** 浠诲姟鐘舵�佹煡璇㈡帴鍙h矾寰勶紙宸插純鐢紝鐩存帴鏌ヨSQL Server鏁版嵁搴擄級 */
     @Deprecated
     private String statusQueryPath = "/task_status_query.asp";
+
+    private String fileUploadUrl;
+
+    private String fileServerUrl;
     
     /** 杩炴帴瓒呮椂鏃堕棿(姣) */
     private int connectTimeout = 30000;
@@ -41,6 +48,21 @@
         return baseUrl;
     }
 
+    public String getFileUploadUrl(){
+        return fileUploadUrl;
+    }
+
+    public void setFileUploadUrl(String fileUploadUrl){
+        this.fileUploadUrl = fileUploadUrl;
+    }
+
+    public String getFileServerUrl(){
+        return fileServerUrl;
+    }
+
+    public void setFileServerUrl(String fileServerUrl){
+        this.fileServerUrl = fileServerUrl;
+        }
     public void setBaseUrl(String baseUrl) {
         this.baseUrl = baseUrl;
     }
@@ -59,6 +81,14 @@
 
     public void setDispatchCreatePath(String dispatchCreatePath) {
         this.dispatchCreatePath = dispatchCreatePath;
+    }
+
+    public String getDispatchUpdatePath() {
+        return dispatchUpdatePath;
+    }
+
+    public void setDispatchUpdatePath(String dispatchUpdatePath) {
+        this.dispatchUpdatePath = dispatchUpdatePath;
     }
 
     public int getConnectTimeout() {
@@ -107,6 +137,13 @@
         return baseUrl + dispatchCreatePath;
     }
     
+    /**
+     * 鑾峰彇瀹屾暣鐨勮皟搴﹀崟鏇存柊URL锛堣溅杈�/浜哄憳鍙樻洿锛�
+     */
+    public String getDispatchUpdateUrl() {
+        return baseUrl + dispatchUpdatePath;
+    }
+    
     public String getStatusQueryPath() {
         return statusQueryPath;
     }

--
Gitblit v1.9.1