后台用户接口修改

This commit is contained in:
张松 2025-09-26 16:23:10 +08:00
parent a6b874c91d
commit b6ef494987
1 changed files with 1 additions and 2 deletions

View File

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