From 0940d9aec8370deed85181c96ca97df359a98c45 Mon Sep 17 00:00:00 2001 From: paulGao Date: Tue, 15 Feb 2022 15:29:32 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=88=B7=E6=96=B0token?= =?UTF-8?q?=E7=99=BD=E5=90=8D=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- buyer-api/src/main/resources/application.yml | 1 + config/application.yml | 2 ++ seller-api/src/main/resources/application.yml | 1 + 3 files changed, 4 insertions(+) diff --git a/buyer-api/src/main/resources/application.yml b/buyer-api/src/main/resources/application.yml index 4192a8ab..f3a7a5a6 100644 --- a/buyer-api/src/main/resources/application.yml +++ b/buyer-api/src/main/resources/application.yml @@ -137,6 +137,7 @@ ignored: - /buyer/passport/connect/** - /buyer/members/** - /buyer/passport/member/** + - /buyer/passport/member/refresh/** - /buyer/promotion/pintuan/** - /buyer/promotion/seckill/** - /buyer/promotion/pointsGoods/** diff --git a/config/application.yml b/config/application.yml index bdfc11d5..c4bb5b36 100644 --- a/config/application.yml +++ b/config/application.yml @@ -125,6 +125,7 @@ ignored: - /weixin/** - /source/** - /store/passport/login/** + - /store/passport/login/refresh/** - /common/common/slider/** - /common/common/sms/** - /buyer/payment/cashier/** @@ -135,6 +136,7 @@ ignored: - /buyer/passport/connect/** - /buyer/members/** - /buyer/passport/member/** + - /buyer/passport/member/refresh/** - /buyer/promotion/pintuan/** - /buyer/promotion/seckill/** - /buyer/promotion/pointsGoods/** diff --git a/seller-api/src/main/resources/application.yml b/seller-api/src/main/resources/application.yml index 7cdbb89d..7ba48b0d 100644 --- a/seller-api/src/main/resources/application.yml +++ b/seller-api/src/main/resources/application.yml @@ -120,6 +120,7 @@ ignored: - /weixin/** - /source/** - /store/passport/login/** + - /store/passport/login/refresh/** - /druid/** - /swagger-ui.html - /doc.html From e4e073b6f09673c8de9db0ff1a6dbe67a9fc6b33 Mon Sep 17 00:00:00 2001 From: paulGao Date: Tue, 15 Feb 2022 16:51:40 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=BB=A1=E4=BC=98?= =?UTF-8?q?=E6=83=A0=E6=B4=BB=E5=8A=A8=E6=90=9C=E7=B4=A2=E5=90=8D=E7=A7=B0?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../promotion/entity/dto/search/FullDiscountSearchParams.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/src/main/java/cn/lili/modules/promotion/entity/dto/search/FullDiscountSearchParams.java b/framework/src/main/java/cn/lili/modules/promotion/entity/dto/search/FullDiscountSearchParams.java index c49c8e24..3c8d2d5d 100644 --- a/framework/src/main/java/cn/lili/modules/promotion/entity/dto/search/FullDiscountSearchParams.java +++ b/framework/src/main/java/cn/lili/modules/promotion/entity/dto/search/FullDiscountSearchParams.java @@ -34,7 +34,7 @@ public class FullDiscountSearchParams extends BasePromotionsSearchParams impleme public QueryWrapper queryWrapper() { QueryWrapper queryWrapper = super.queryWrapper(); if (CharSequenceUtil.isNotEmpty(promotionName)) { - queryWrapper.like("title", promotionName); + queryWrapper.like("promotion_name", promotionName); } if (couponFlag != null) { queryWrapper.eq("coupon_flag", couponFlag);