会员列表

This commit is contained in:
2024-05-16 15:17:45 +08:00
parent f8ed4fe16b
commit eb450106c6
4 changed files with 29 additions and 2 deletions

View File

@@ -63,6 +63,16 @@ public class TbShopUserServiceImpl implements TbShopUserService {
return PageUtil.toPage(shopUserJoinUserInfo);
}
@Override
public Map<String, Object> queryShopUser(TbShopUserQueryCriteria criteria, Pageable pageable) {
Page<ShopUserInfoVo> shopUserJoinUserInfo =
tbShopUserRepository.findAllShopUserJoinUserInfo(
criteria.getIsVip(),
criteria.getTelephone(),
pageable);
return PageUtil.toPage(shopUserJoinUserInfo);
}
@Override
public Map<String, Object> queryAll(TbShopUserQueryCriteria criteria, Pageable pageable) {
criteria.setIsVip(1);

View File

@@ -39,6 +39,8 @@ public interface TbShopUserService {
* @param pageable 分页参数
* @return Map<String,Object>
*/
Map<String, Object> queryShopUser(TbShopUserQueryCriteria criteria, Pageable pageable);
Map<String, Object> queryAllShopUser(TbShopUserQueryCriteria criteria, Pageable pageable);
/**