|
|
|
@@ -80,7 +80,14 @@ public class WxCouponController extends BaseController { |
|
|
|
return new ResultData(ErrorCode.SYS_PARAMETER_NOT_NULL.getCode(), "couponChannelId转换失败" + couponChannelId); |
|
|
|
} |
|
|
|
|
|
|
|
String key = "cc:" + couponChannelId; |
|
|
|
String key = "cc:"; |
|
|
|
if(couponChannelIdL > 0){ |
|
|
|
key = key + couponChannelIdL; |
|
|
|
}else if(couponIdL > 0){ |
|
|
|
key = key + couponIdL; |
|
|
|
}else{ |
|
|
|
return new ResultData(ErrorCode.SYS_PARAMETER_NOT_NULL.getCode(), "couponChannelId/couponId为空"); |
|
|
|
} |
|
|
|
|
|
|
|
ValueOperations<String, WxCouponCVo> operations = cdRedisTemplate.opsForValue(); |
|
|
|
// 缓存 |
|
|
|
@@ -160,7 +167,14 @@ public class WxCouponController extends BaseController { |
|
|
|
return new ResultData(ErrorCode.SYS_PARAMETER_NOT_NULL.getCode(), "couponChannelId转换失败" + couponChannelId); |
|
|
|
} |
|
|
|
|
|
|
|
String key = "ch:" + couponChannelId; |
|
|
|
String key = "ch:"; |
|
|
|
if(couponChannelIdL > 0){ |
|
|
|
key = key + couponChannelIdL; |
|
|
|
}else if(couponIdL > 0){ |
|
|
|
key = key + couponIdL; |
|
|
|
}else{ |
|
|
|
return new ResultData(ErrorCode.SYS_PARAMETER_NOT_NULL.getCode(), "couponChannelId/couponId为空"); |
|
|
|
} |
|
|
|
|
|
|
|
ValueOperations<String, WxCouponCVo> operations = cdRedisTemplate.opsForValue(); |
|
|
|
// 缓存 |
|
|
|
|