!168 bugfix(promotion): 修正参数名中文导致作废券接口报错

Merge pull request !168 from Song/pr-master-jdk7
pull/169/head
芋道源码 2025-02-08 23:31:42 +00:00 committed by Gitee
commit 2ec1327214
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ public interface CouponApi {
@Parameter(name = "giveCouponIds", description = "赠送的优惠券编号", required = true),
@Parameter(name = "userId", description = "用户编号", required = true)
})
CommonResult<Boolean> invalidateCouponsByAdmin(@RequestParam("赠送的优惠券编号") List<Long> giveCouponIds,
@RequestParam("用户编号") Long userId);
CommonResult<Boolean> invalidateCouponsByAdmin(@RequestParam("giveCouponIds") List<Long> giveCouponIds,
@RequestParam("userId") Long userId);
}