From e8e81da7d832b5626c7137d00da9d0baab367e7f Mon Sep 17 00:00:00 2001 From: huangyawei Date: Mon, 12 Aug 2024 20:42:53 +0800 Subject: [PATCH] =?UTF-8?q?release-=20=E4=BF=AE=E6=94=B9controller?= =?UTF-8?q?=E9=80=82=E9=85=8Dswagger?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/luoo/user/controller/StoreController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/luoo_user/src/main/java/com/luoo/user/controller/StoreController.java b/luoo_user/src/main/java/com/luoo/user/controller/StoreController.java index 535d04b..4e8b41b 100644 --- a/luoo_user/src/main/java/com/luoo/user/controller/StoreController.java +++ b/luoo_user/src/main/java/com/luoo/user/controller/StoreController.java @@ -84,8 +84,8 @@ public class StoreController { @ApiOperation(value = "修改门店状态(PC)", notes = "修改门店状态") @ApiImplicitParams( { - @ApiImplicitParam(name = "id", value = "门店id", required = true, dataType = "String"), - @ApiImplicitParam(name = "status", value = "门店状态 1-合作中 2-停止合作", required = true, dataType = "Integer") + @ApiImplicitParam(name = "id", value = "门店id", required = true, dataType = "String", paramType = "query"), + @ApiImplicitParam(name = "status", value = "门店状态 1-合作中 2-停止合作", required = true, dataType = "Integer", paramType = "query") } ) public Result changeStatus(@NotNull String id, @NotNull Integer status) {