From 562699fa6d0c279fe0f4f81ce87c336a34a3fb91 Mon Sep 17 00:00:00 2001 From: hjl <1657978663@qq.com> Date: 星期二, 23 七月 2024 14:32:23 +0800 Subject: [PATCH] feat: 数据迁移;netty通信;bug修改 --- ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/constant/Constants.java | 31 ++++++++++++++++++++++++++++--- 1 files changed, 28 insertions(+), 3 deletions(-) diff --git a/ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/constant/Constants.java b/ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/constant/Constants.java index b087c3c..dd754e6 100644 --- a/ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/constant/Constants.java +++ b/ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/constant/Constants.java @@ -9,7 +9,7 @@ /** * 微信获取授权openId地址 */ - public static final String WX_OPENID_ADDRESS = "https://api.weixin.qq.com/sns/jscode2sess"; + public static final String WX_OPENID_ADDRESS = "https://api.weixin.qq.com/sns/jscode2session"; /** * UTF-8 字符集 @@ -188,6 +188,16 @@ public static final String REJECT_STR = "已驳回"; /** + * 家电以旧换新 + */ + public static final String TRADE_IN = "家电以旧换新"; + + /** + * 预约上门回收 + */ + public static final String RECOVERY = "预约上门回收"; + + /** * 数字60 */ public static final Integer SIXTY = 60; @@ -228,14 +238,24 @@ public static final Integer SIX = 6; /** + * 数字10 + */ + public static final Integer TEN = 10; + + /** * 数字18 */ public static final Integer EIGHTEEN = 18; /** - * 数字18 + * 数字8 */ - public static final Integer EIGHT = 18; + public static final Integer EIGHT = 8; + + /** + * 数字 30 + */ + public static final Integer THIRTY = 30; /** * 数字100 @@ -243,6 +263,11 @@ public static final Integer ONE_HUNDRED = 100; /** + * 数字 365 + */ + public static final Integer YEAR_DAY = 365; + + /** * 数字 3000 */ public static final Integer THREE_THOUSAND = 3000; -- Gitblit v1.7.1