|
@@ -263,11 +263,11 @@ public class LifeDiscountCouponController {
|
|
|
public R<String> getCouponRule(@ApiIgnore @TokenInfo UserLoginInfo userLoginInfo,
|
|
public R<String> getCouponRule(@ApiIgnore @TokenInfo UserLoginInfo userLoginInfo,
|
|
|
@RequestParam(value = "couponId", required = false) String couponId,
|
|
@RequestParam(value = "couponId", required = false) String couponId,
|
|
|
@RequestParam(required = false) Integer type,
|
|
@RequestParam(required = false) Integer type,
|
|
|
- @RequestParam(value = "voucherId", required = false) String voucherIdParam
|
|
|
|
|
|
|
+ @RequestParam(value = "voucherId", required = false) String voucherId
|
|
|
) {
|
|
) {
|
|
|
- log.info("LifeDiscountCouponController.getCouponRule?couponId={}, type={}, voucherId={}", couponId, type, voucherIdParam);
|
|
|
|
|
|
|
+ log.info("LifeDiscountCouponController.getCouponRule?couponId={}, type={}, voucherId={}", couponId, type, voucherId);
|
|
|
try {
|
|
try {
|
|
|
- String couponRule = lifeDiscountCouponService.getCouponRule(couponId, userLoginInfo, type, voucherIdParam);
|
|
|
|
|
|
|
+ String couponRule = lifeDiscountCouponService.getCouponRule(couponId, userLoginInfo, type, voucherId);
|
|
|
return R.success(couponRule);
|
|
return R.success(couponRule);
|
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
|
log.error("LifeDiscountCouponController.getCouponRule ERROR Msg={}", e.getMessage());
|
|
log.error("LifeDiscountCouponController.getCouponRule ERROR Msg={}", e.getMessage());
|