From 788deca1b4a24f8a24e49c24f7d89975a1d74bbe Mon Sep 17 00:00:00 2001 From: admin <2780501319@qq.com> Date: 星期日, 03 十一月 2019 23:31:25 +0800 Subject: [PATCH] 商城订单退款处理 --- fanli/src/main/java/com/yeshi/fanli/service/impl/config/SystemCouponServiceImpl.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/config/SystemCouponServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/config/SystemCouponServiceImpl.java index 76f36ad..8535f7a 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/impl/config/SystemCouponServiceImpl.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/config/SystemCouponServiceImpl.java @@ -54,7 +54,7 @@ } @Override - @Cacheable(value = "systemCouponCache",key="'getOrderCouponList") + @Cacheable(value = "systemCouponCache",key="'getOrderCouponList'") public List<SystemCoupon> getOrderCouponList() { List<String> listType = new ArrayList<String>(); listType.add(CouponTypeEnum.rebatePercentCoupon.name()); @@ -68,7 +68,7 @@ List<String> listType = new ArrayList<String>(); listType.add(CouponTypeEnum.freeCoupon.name()); listType.add(CouponTypeEnum.welfareFreeCoupon.name()); - + listType.add(CouponTypeEnum.freeCouponBuy.name()); return systemCouponMapper.getCouponListByType(listType); } -- Gitblit v1.8.0