From b9da8289051937fbbbd47bbda97414ad6c769a90 Mon Sep 17 00:00:00 2001 From: hjl <1657978663@qq.com> Date: 星期四, 18 七月 2024 14:37:00 +0800 Subject: [PATCH] feat: 代码重构 --- ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/constant/Constants.java | 27 ++++++++++++++++++++++++++- 1 files changed, 26 insertions(+), 1 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..157d44d 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,6 +238,11 @@ public static final Integer SIX = 6; /** + * 数字10 + */ + public static final Integer TEN = 10; + + /** * 数字18 */ public static final Integer EIGHTEEN = 18; @@ -238,11 +253,21 @@ public static final Integer EIGHT = 18; /** + * 数字 30 + */ + public static final Integer THIRTY = 30; + + /** * 数字100 */ 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