From 6f14c9c67d98e33677ae30a0af70e5c1c853f9ea Mon Sep 17 00:00:00 2001 From: huangyawei Date: Wed, 9 Oct 2024 18:13:40 +0800 Subject: [PATCH] =?UTF-8?q?release-=20swagger=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/luoo/user/controller/PointController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luoo_user/src/main/java/com/luoo/user/controller/PointController.java b/luoo_user/src/main/java/com/luoo/user/controller/PointController.java index 495dc70..6e7e3b7 100644 --- a/luoo_user/src/main/java/com/luoo/user/controller/PointController.java +++ b/luoo_user/src/main/java/com/luoo/user/controller/PointController.java @@ -376,7 +376,7 @@ public class PointController { @GlobalInterceptor(checkAppUserLogin = true) public Result> findParticipatedLotteryUserList( @ApiParam(value = "Header中的token信息", required = true) @RequestHeader("Authorization") String token, - @ApiParam(value = "抽奖id") String lotteryId, + @ApiParam(value = "抽奖id") @RequestParam("lotteryId") String lotteryId, @ApiParam(value = "页码", required = true) @PathVariable Integer page, @ApiParam(value = "每页条数", required = true) @PathVariable Integer size) { return Result.success(lotteryService.findPageByLotteryId(page, size, lotteryId));