diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/product/controller/admin/ShopOpenController.java b/mall-shop/src/main/java/com/suisung/mall/shop/product/controller/admin/ShopOpenController.java index 621961f2..a7b0dbbe 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/product/controller/admin/ShopOpenController.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/product/controller/admin/ShopOpenController.java @@ -72,7 +72,7 @@ public class ShopOpenController { * @return */ @ApiOperation(value = "地区表-根据父id查找子列表", notes = "地区表-根据父id查找子列表") - @RequestMapping(value = "/list", method = RequestMethod.GET) + @RequestMapping(value = "/shop-base-district/list", method = RequestMethod.GET) public CommonResult list(@RequestParam(name = "district_parent_id", defaultValue = "0") Integer district_parent_id ){ return CommonResult.success(shopBaseDistrictService.getDistrictByParentIdList(district_parent_id)); }