From 582bc72be369a7e8548055a8a3f4c95d1ddb37f9 Mon Sep 17 00:00:00 2001 From: huangyw <1207046171@qq.com> Date: Wed, 9 Oct 2024 09:21:03 +0800 Subject: [PATCH] =?UTF-8?q?release:=203.7.=E5=8F=82=E4=B8=8E=E6=8A=BD?= =?UTF-8?q?=E5=A5=96(APP)=20=E4=B8=8D=E5=BC=BA=E5=88=B6=E8=A6=81=E6=B1=82?= =?UTF-8?q?=E5=8C=BA=E5=9F=9FID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/luoo/user/controller/PointController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 6bcf859..495dc70 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 @@ -339,10 +339,10 @@ public class PointController { @ApiImplicitParams({ @ApiImplicitParam(name = "Authorization", value = "token", required = true, dataType = "String", paramType = "header"), @ApiImplicitParam(name = "id", value = "抽奖id", required = true, dataType = "String", paramType = "query"), - @ApiImplicitParam(name = "regionId", value = "区域id", required = true, dataType = "Integer", paramType = "query") + @ApiImplicitParam(name = "regionId", value = "区域id", required = false, dataType = "Integer", paramType = "query") }) public Result participate(@RequestHeader("Authorization") String token, @NotNull String id, - @NotNull Integer regionId) { + Integer regionId) { lotteryService.participate(id, token, regionId); return Result.success(); }