dubblo报错修复

This commit is contained in:
张松
2025-09-28 19:26:34 +08:00
parent 06006aa431
commit 0846ae21e7
3 changed files with 10 additions and 1 deletions

View File

@@ -45,6 +45,11 @@ public class ShopUserServiceImpl extends ServiceImpl<ShopUserMapper, ShopUser> i
return shopUser;
}
@Override
public boolean updateById(ShopUser entity) {
return super.updateById(entity);
}
@Override
public ShopUser getShopUserInfo(Long shopId, long userId) {
Long mainShopId = shopInfoService.getMainIdByShopId(shopId);