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));