diff --git a/hiver-modules/hiver-mall/src/main/java/cc/hiver/mall/controller/ShopController.java b/hiver-modules/hiver-mall/src/main/java/cc/hiver/mall/controller/ShopController.java index 337e6965..b6245094 100644 --- a/hiver-modules/hiver-mall/src/main/java/cc/hiver/mall/controller/ShopController.java +++ b/hiver-modules/hiver-mall/src/main/java/cc/hiver/mall/controller/ShopController.java @@ -291,8 +291,9 @@ public class ShopController { return ResultUtil.error("店铺id不能为空"); } final Shop oldShop = shopService.get(id); - if(shop.getShopIcon() != null){ - oldShop.setShopIcon(shop.getShopIcon()); + // 20240803 不更新店铺图标,可更新店铺地址 + if(shop.getShopAddress() != null){ + oldShop.setShopAddress(shop.getShopAddress()); } if(shop.getRemark() != null){ oldShop.setRemark(shop.getRemark());