From 5cf3edc183ea8661faca4baf44744daf30bd20b5 Mon Sep 17 00:00:00 2001 From: sdhkjh <2450473462@qq.com> Date: Wed, 16 Oct 2024 09:20:11 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E6=94=B9=E5=95=86=E5=9F=8E?= =?UTF-8?q?=E6=A0=B9=E6=8D=AEid=E6=9F=A5=E8=AF=A2=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E5=90=8D=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/skyeye/store/controller/ShopAddressController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skyeye-shop/shop-store/src/main/java/com/skyeye/store/controller/ShopAddressController.java b/skyeye-shop/shop-store/src/main/java/com/skyeye/store/controller/ShopAddressController.java index 0d262c18..48d987c1 100644 --- a/skyeye-shop/shop-store/src/main/java/com/skyeye/store/controller/ShopAddressController.java +++ b/skyeye-shop/shop-store/src/main/java/com/skyeye/store/controller/ShopAddressController.java @@ -65,10 +65,10 @@ public class ShopAddressController { * @param inputObject 入参以及用户信息等获取对象 * @param outputObject 出参以及提示信息的返回值对象 */ - @ApiOperation(id = "selectShopAddressByIds", value = "根据id查询收件地址信息", method = "POST", allUse = "2") + @ApiOperation(id = "selectShopAddressById", value = "根据id查询收件地址信息", method = "POST", allUse = "2") @ApiImplicitParams({ @ApiImplicitParam(id = "id", name = "id", value = "主键id", required = "required")}) - @RequestMapping("/post/ShopAddressController/selectShopAddressByIds") + @RequestMapping("/post/ShopAddressController/selectShopAddressById") public void selectShopAddressByIds(InputObject inputObject, OutputObject outputObject) { shopAddressService.selectById(inputObject, outputObject); }