Browse Source

fix bug

release_toaliyun_real
zhengfangyuan 3 years ago
parent
commit
7c6a8ef28b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mallinkService/src/main/java/com/iformall/service/util/CouponCacheUtils.java

+ 1
- 1
mallinkService/src/main/java/com/iformall/service/util/CouponCacheUtils.java View File

@@ -59,7 +59,7 @@ public class CouponCacheUtils {
public static Map<String,List<WxMerchantVo>> getCouponMerchantCache(RedisTemplate<String, Object> template,Long couponId) {
String key = "couponMerchantNew:"+couponId;
return (Map<String, List<WxMerchantVo>>) RedisCacheUtils.getCacheListObject(template, key,Map.class);
return (Map<String, List<WxMerchantVo>>) RedisCacheUtils.getCacheMap(template, key);
}
public static void removeDouyinLivePageCache(RedisTemplate<String, Object> template,String tenantId,Integer targetAd,Integer bussiness) {


Loading…
Cancel
Save