From 9eeb62c02a7b3c7b95c20678b6a9c74e7f12f943 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期三, 01 七月 2026 18:15:10 +0800
Subject: [PATCH] Merge branch '3.0.1' of http://139.186.142.91:10010/r/productDev/parkBike into 3.0.1
---
server/services/src/main/java/com/doumee/core/constants/Constants.java | 126 ++++++++++++++++++++++++++++++++++++++++++
1 files changed, 126 insertions(+), 0 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 bf2d151..d4ef25c 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
@@ -33,6 +33,130 @@
public static final String DINGDING_TOKEN ="DINGDING_TOKEN" ;
public static final String MINI_PROGRAMME ="MINI_PROGRAMME" ;
+
+ // ==================== 鎶栭煶鏍搁攢閰嶇疆(瀛樹簬瀛楀吀 DOUYIN_CONFIG,鍚庡彴鍙敼銆佸厤閲嶅惎)====================
+ /** 瀛楀吀缂栫爜:鎶栭煶鏍搁攢閰嶇疆(system_dict.code) */
+ public static final String DOUYIN_CONFIG ="DOUYIN_CONFIG" ;
+ /** 瀛楀吀椤规爣绛�:鎶栭煶搴旂敤 client_key */
+ public static final String DOUYIN_CLIENT_KEY ="CLIENT_KEY" ;
+ /** 瀛楀吀椤规爣绛�:鎶栭煶搴旂敤 client_secret */
+ public static final String DOUYIN_CLIENT_SECRET ="CLIENT_SECRET" ;
+ /** 瀛楀吀椤规爣绛�:鏉ュ鍟嗘埛鏍硅处鎴稩D */
+ public static final String DOUYIN_ACCOUNT_ID ="ACCOUNT_ID" ;
+ /** 瀛楀吀椤规爣绛�:鏍搁攢闂ㄥ簵ID(鍗曢棬搴�) */
+ public static final String DOUYIN_POI_ID ="POI_ID" ;
+
+ // ==================== 鎶栭煶鏍搁攢鏋氫妇(瀵瑰簲 douyin_verify_log / douyin_verify_record 琛ㄥ瓧娈靛彇鍊�)====================
+
+ /**
+ * 鎶栭煶鏍搁攢鎿嶄綔鏃ュ織绫诲瀷 鈥斺�� 瀵瑰簲 douyin_verify_log.operate_type:0楠屽埜鍑嗗 1鏍搁攢 2鎾ら攢鏍搁攢
+ */
+ public enum DOUYIN_VERIFY_OPERATE_TYPE {
+ PREPARE(0, "楠屽埜鍑嗗", "鎵爜/杈撶爜鍑嗗鏍搁攢"),
+ VERIFY(1, "鏍搁攢", "楠屽埜鏍搁攢"),
+ CANCEL(2, "鎾ら攢鏍搁攢", "鎾ら攢宸叉牳閿�璁板綍"),
+ ;
+ String name;
+ Integer key;
+ String info;
+
+ DOUYIN_VERIFY_OPERATE_TYPE(Integer key, String name, String info) {
+ this.name = name;
+ this.key = key;
+ this.info = info;
+ }
+ public String getName() {
+ return name;
+ }
+ public Integer getKey() {
+ return key;
+ }
+ public String getInfo() {
+ return info;
+ }
+ }
+
+ /**
+ * 鎶栭煶鏍搁攢鎿嶄綔鏃ュ織缁撴灉 鈥斺�� 瀵瑰簲 douyin_verify_log.result:0鎴愬姛 1澶辫触
+ */
+ public enum DOUYIN_VERIFY_LOG_RESULT {
+ SUCCESS(0, "鎴愬姛", "鎿嶄綔鎴愬姛"),
+ FAIL(1, "澶辫触", "鎿嶄綔澶辫触"),
+ ;
+ String name;
+ Integer key;
+ String info;
+
+ DOUYIN_VERIFY_LOG_RESULT(Integer key, String name, String info) {
+ this.name = name;
+ this.key = key;
+ this.info = info;
+ }
+ public String getName() {
+ return name;
+ }
+ public Integer getKey() {
+ return key;
+ }
+ public String getInfo() {
+ return info;
+ }
+ }
+
+ /**
+ * 鎶栭煶鏍搁攢璁板綍鏍搁攢鐘舵�� 鈥斺�� 瀵瑰簲 douyin_verify_record.verify_status:0鎴愬姛 1澶辫触
+ */
+ public enum DOUYIN_VERIFY_STATUS {
+ SUCCESS(0, "鏍搁攢鎴愬姛", "鏍搁攢鎴愬姛"),
+ FAIL(1, "鏍搁攢澶辫触", "鏍搁攢澶辫触"),
+ ;
+ String name;
+ Integer key;
+ String info;
+
+ DOUYIN_VERIFY_STATUS(Integer key, String name, String info) {
+ this.name = name;
+ this.key = key;
+ this.info = info;
+ }
+ public String getName() {
+ return name;
+ }
+ public Integer getKey() {
+ return key;
+ }
+ public String getInfo() {
+ return info;
+ }
+ }
+
+ /**
+ * 鎶栭煶鏍搁攢璁板綍鎾ら攢鐘舵�� 鈥斺�� 瀵瑰簲 douyin_verify_record.cancel_status:0鏈挙閿� 1宸叉挙閿�
+ */
+ public enum DOUYIN_VERIFY_CANCEL_STATUS {
+ NOT_CANCEL(0, "鏈挙閿�", "鏈挙閿�"),
+ DONE(1, "宸叉挙閿�", "宸叉挙閿�"),
+ ;
+ String name;
+ Integer key;
+ String info;
+
+ DOUYIN_VERIFY_CANCEL_STATUS(Integer key, String name, String info) {
+ this.name = name;
+ this.key = key;
+ this.info = info;
+ }
+ public String getName() {
+ return name;
+ }
+ public Integer getKey() {
+ return key;
+ }
+ public String getInfo() {
+ return info;
+ }
+ }
+
public static final String FREE_RENT_TIME ="FREE_RENT_TIME" ;
public static final String LOW_VOLTAGE ="LOW_VOLTAGE" ;
public static final String ACCESS_TOKEN ="ACCESS_TOKEN" ;
@@ -217,6 +341,8 @@
public static final String RENT_NOTICE = "RENT_NOTICE";
//灏忕▼搴忓仠姝㈡湇鍔℃彁绀�
public static final String STOP_SERVE_TIPS = "STOP_SERVE_TIPS";
+ //鎶栭煶鍒稿厬鎹㈣鏄�(灏忕▼搴忛椤靛睍绀�,鎻愮ず鐢ㄦ埛鎶栭煶鍒稿厬鎹㈣鍒�)
+ public static final String DOUYIN_EXCHANGE_TIPS = "DOUYIN_EXCHANGE_TIPS";
//灏忕▼搴忔槸鍚﹀仠姝㈡湇鍔� 0鍚� 1鏄�
public static final String IS_STOP_SERVE = "IS_STOP_SERVE";
//灏忕▼搴忓仠姝㈠紑濮嬫椂闂�
--
Gitblit v1.9.3