会员列表
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user