店铺列表查询修改

This commit is contained in:
张松 2025-09-27 17:26:56 +08:00
parent 8a0bd59e9c
commit 253a6cfbd2
1 changed files with 1 additions and 1 deletions

View File

@ -80,8 +80,8 @@ public class AShopUserServiceImpl implements AShopUserService {
@Override
public Page<ShopUserDTO> getPage(String key, Integer isVip, BigDecimal amount) {
PageHelper.startPage(PageUtil.buildPageHelp());
Long mainIdByShopId = shopInfoService.getMainIdByShopId(StpKit.USER.getShopId());
PageHelper.startPage(PageUtil.buildPageHelp());
return PageUtil.convert(new PageInfo<>(shopUserMapper.selectPageByKeyAndIsVip(mainIdByShopId, isVip, key, amount)));
}