|
|
@ -291,8 +291,9 @@ public class ShopController { |
|
|
return ResultUtil.error("店铺id不能为空"); |
|
|
return ResultUtil.error("店铺id不能为空"); |
|
|
} |
|
|
} |
|
|
final Shop oldShop = shopService.get(id); |
|
|
final Shop oldShop = shopService.get(id); |
|
|
if(shop.getShopIcon() != null){ |
|
|
// 20240803 不更新店铺图标,可更新店铺地址
|
|
|
oldShop.setShopIcon(shop.getShopIcon()); |
|
|
if(shop.getShopAddress() != null){ |
|
|
|
|
|
oldShop.setShopAddress(shop.getShopAddress()); |
|
|
} |
|
|
} |
|
|
if(shop.getRemark() != null){ |
|
|
if(shop.getRemark() != null){ |
|
|
oldShop.setRemark(shop.getRemark()); |
|
|
oldShop.setRemark(shop.getRemark()); |
|
|
|