新增桌码换取台桌信息接口

This commit is contained in:
张松 2025-04-27 16:26:33 +08:00
parent 247da29c67
commit 2ab2b0b1c3
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ public class ShopUserServiceImpl extends ServiceImpl<ShopUserMapper, ShopUser> i
shopUserDetailDTO.setShopName(shopInfo.getShopName());
shopUserDetailDTO.setShopId(shopInfo.getId());
ShopConfig config = shopConfigMapper.selectOneByQuery(new QueryWrapper().eq(ShopConfig::getMainId, shopId));
ShopConfig config = shopConfigMapper.selectOneByQuery(new QueryWrapper().eq(ShopConfig::getId, shopId));
if (config != null) {
BeanUtil.copyProperties(config, shopInfo, "id");
}