From 47e03d0aa72b6bd1c62c4ecff0c25289890f7abc Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Wed, 12 Feb 2025 10:49:17 +0800 Subject: [PATCH] refactor(mall): 根据系统配置选择不同的物流服务接口 - 在 AdminMallOrderService 和 CommonService 中添加了根据系统配置选择物流服务接口的逻辑 - 新增了 SENDER_STATE 数据字典项,用于控制使用测试环境还是生产环境的物流服务 - 根据系统配置,选择不同的 ClientParamEnum 实例来调用 --- src/main/resources/application-prod.yml | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/application-prod.yml b/src/main/resources/application-prod.yml index 9ffca9f..9fca4b3 100644 --- a/src/main/resources/application-prod.yml +++ b/src/main/resources/application-prod.yml @@ -61,8 +61,8 @@ xcx: wechar_login_url: https://api.weixin.qq.com/sns/jscode2session?appid=%s&secret=%s&js_code=%s&grant_type=authorization_code - xcx_appid: wxad2fdb2fcad10fb2 - xcx_secret: 9bb58d655bff419feec3a6d948ca8b8d + xcx_appid: wx526879ea8589ba00 + xcx_secret: a4aed487b1b438075776151d0312b36a debug: false wecharPaynotifyUrl: http://api.blnka.cn/api/xcxPay/wxpayCallback wecharRechargePaynotifyUrl: http://api.blnka.cn/api/xcxPay/rechargeCallBack -- Gitblit v1.9.1