From b60e601d62c0e2d5c4fd1df9f12fa09f2bf99987 Mon Sep 17 00:00:00 2001
From: 无关风月 <443237572@qq.com>
Date: 星期一, 14 十月 2024 17:56:48 +0800
Subject: [PATCH] 调试支付

---
 xinquan-common/xinquan-common-core/src/main/java/com/xinquan/common/core/constant/CacheConstants.java |   31 ++++++++++++++++++++++++++++++-
 1 files changed, 30 insertions(+), 1 deletions(-)

diff --git a/xinquan-common/xinquan-common-core/src/main/java/com/xinquan/common/core/constant/CacheConstants.java b/xinquan-common/xinquan-common-core/src/main/java/com/xinquan/common/core/constant/CacheConstants.java
index 26266ab..b381738 100644
--- a/xinquan-common/xinquan-common-core/src/main/java/com/xinquan/common/core/constant/CacheConstants.java
+++ b/xinquan-common/xinquan-common-core/src/main/java/com/xinquan/common/core/constant/CacheConstants.java
@@ -31,6 +31,10 @@
      * 权限缓存前缀
      */
     public final static String LOGIN_TOKEN_KEY = "login_tokens:";
+    /**
+     * APP用户登录token缓存前缀
+     */
+    public final static String APP_USER_LOGIN_TOKEN_KEY = "app_login_tokens:";
 
     /**
      * 验证码 redis key
@@ -56,5 +60,30 @@
      * 登录IP黑名单 cache key
      */
     public static final String SYS_LOGIN_BLACKIPLIST = SYS_CONFIG_KEY + "sys.login.blackIPList";
-    public static final String APP_CAPTCHA_CODE_PREFIX = "app_captcha_code:";
+
+    /**
+     * APP注册验证码 redis key
+     */
+    public static final String APP_REGISTER_CAPTCHA_CODE_PREFIX = "app_register_captcha_code:";
+    /**
+     * APP登录验证码 redis key
+     */
+    public static final String APP_LOGIN_CAPTCHA_CODE_PREFIX = "app_login_captcha_code:";
+    /**
+     * APP修改密码验证码 redis key
+     */
+    public static final String APP_PASSWORD_CAPTCHA_CODE_PREFIX = "app_password_captcha_code:";
+    /**
+     * APP第三方登录手机号校验验证码 redis key
+     */
+    public static final String APP_VERIFY_CAPTCHA_CODE_PREFIX = "app_verify_captcha_code:";
+    /**
+     * 更换绑定手机号 redis key
+     */
+    public static final String APP_CHANGE_PHONE_CODE_PREFIX = "app_change_phone_code:";
+    /**
+     * APP第三方登录手机号校验验证码修改密码秘钥 redis key
+     */
+    public static final String APP_PASSWORD_SECRET_PREFIX = "app_password_secret:";
+
 }

--
Gitblit v1.7.1