From cfe0b79fbea0fb1d7a5a796e71ada7d3b7812046 Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期一, 15 十二月 2025 22:31:33 +0800
Subject: [PATCH] feat: 企业微信发送微信小程序cetd
---
ruoyi-common/src/main/java/com/ruoyi/common/config/LegacySystemConfig.java | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 56 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 f178ee8..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,6 +21,17 @@
/** 璋冨害鍗曞垱寤烘帴鍙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;
@@ -37,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;
}
@@ -55,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() {
@@ -102,4 +136,26 @@
public String getDispatchCreateUrl() {
return baseUrl + dispatchCreatePath;
}
+
+ /**
+ * 鑾峰彇瀹屾暣鐨勮皟搴﹀崟鏇存柊URL锛堣溅杈�/浜哄憳鍙樻洿锛�
+ */
+ public String getDispatchUpdateUrl() {
+ return baseUrl + dispatchUpdatePath;
+ }
+
+ public String getStatusQueryPath() {
+ return statusQueryPath;
+ }
+
+ public void setStatusQueryPath(String statusQueryPath) {
+ this.statusQueryPath = statusQueryPath;
+ }
+
+ /**
+ * 鑾峰彇瀹屾暣鐨勭姸鎬佹煡璇RL
+ */
+ public String getStatusQueryUrl() {
+ return baseUrl + statusQueryPath;
+ }
}
--
Gitblit v1.9.1