This commit is contained in:
牛叉闪闪
2024-09-05 15:24:49 +08:00
parent e1bd478ae5
commit 13fedb841b
5 changed files with 10 additions and 6 deletions

View File

@@ -88,6 +88,10 @@ public class MemberService {
public Result queryMember(String shopId, String phone,String isFlag, int page, int pageSize) {
PageHelperUtil.startPage(page, pageSize);
if(!"1".equals(isFlag)){
isFlag=null;
}
List<TbShopUser> tbShopUsers = tbShopUserMapper.selectByShopId(shopId, phone,isFlag);
PageInfo pageInfo = new PageInfo(tbShopUsers);
return Result.success(CodeEnum.SUCCESS, pageInfo);