From d0e9bda3ccb554481bcd52d3c9e22a39ef36abc9 Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期二, 15 七月 2025 14:44:22 +0800
Subject: [PATCH] 前端

---
 server/services/src/main/java/com/doumee/core/constants/Constants.java |   58 ++++++++++++++++++++++++++++++++++++++++++++++++++--------
 1 files changed, 50 insertions(+), 8 deletions(-)

diff --git a/server/services/src/main/java/com/doumee/core/constants/Constants.java b/server/services/src/main/java/com/doumee/core/constants/Constants.java
index 5fa236d..a2fa4a2 100644
--- a/server/services/src/main/java/com/doumee/core/constants/Constants.java
+++ b/server/services/src/main/java/com/doumee/core/constants/Constants.java
@@ -18,13 +18,7 @@
     public static final String HWY_OBS_ACCESSKEY ="HWY_OBS_ACCESSKEY" ;
     public static final String HWY_OBS_ENDPOINT ="HWY_OBS_ENDPOINT" ;
     public static final String HWY_OBS_BUCKET ="HWY_OBS_BUCKET" ;
-    public static final String FTP ="FTP" ;
-    public static final String FTP_HOST ="FTP_HOST" ;
-    public static final String FTP_PORT ="FTP_PORT" ;
-    public static final String FTP_USERNAME ="FTP_USERNAME" ;
-    public static final String FTP_PWD ="FTP_PWD" ;
-    public static final String FTP_RESOURCE_PATH ="FTP_RESOURCE_PATH" ;
-    public static final String FTP_LOCAL_RESOURCE_PATH ="FTP_LOCAL_RESOURCE_PATH" ;
+    public static final String RESOURCE_PATH ="RESOURCE_PATH" ;
     public static final String QYWX_CORPID = "QYWX_CORPID";
     public static final String QYWX_SECRET = "QYWX_SECRET";
     public static final String QYWX_TOKEN = "QYWX_TOKEN";
@@ -67,6 +61,10 @@
     public static final Integer FOUR = 4;
     public static final Integer SIX = 6;
     public static final Integer FIVE = 5;
+    public static final String INENTITY_FILES = "INENTITY_FILES";
+    public static final String MEMBER_FILES = "MEMBER_FILES";
+    public static final String CATEGORY_FILES = "CATEGORY_FILES";
+    public static final String ORDERS_FILES = "ORDERS_FILES";
     public static boolean WORKORDER_SHE_EMAIL_SENDING = false;
     public static  boolean DEALING_COMPANY_SYNC = false ;
     public static  boolean DEALING_MEMBER_SYNC = false ;
@@ -85,7 +83,7 @@
     interface CacheKey {
     }
     public interface RedisKeys {
-        public static final String IMPORTING_CATEGORY = "IMPORTING_CATEGORY";
+        public static final String ORDER_CODE = "ORDER_CODE";
     }
     /**
      * 鎿嶄綔绫诲瀷锛岀敤浜庡仛鎺ュ彛楠岃瘉鍒嗙粍
@@ -481,5 +479,49 @@
     }
 
 
+    public  enum workType {
+        czg(0, "閲囨憳宸�"),
+        fjg(1, "鍒嗘嫞宸�"),
+        bzg(2, "鍖呰宸�"),
+
+        ;
+        // 鎴愬憳鍙橀噺
+        private int key;
+        private String name;
+
+        // 鏋勯�犳柟娉�
+        workType(int key, String name) {
+            this.name = name;
+            this.key = key;
+        }
+
+        // 鏅�氭柟娉�
+        public static String getName(int index) {
+            for (OrdersLog c : OrdersLog.values()) {
+                if (c.getKey() == index) {
+                    return c.name;
+                }
+            }
+            return null;
+        }
+        // get set 鏂规硶
+        public String getName() {
+            return name;
+        }
+
+        public void setName(String name) {
+            this.name = name;
+        }
+
+        public int getKey() {
+            return key;
+        }
+
+        public void setKey(int key) {
+            this.key = key;
+        }
+
+    }
+
 
 }

--
Gitblit v1.9.3