Merge remote-tracking branch 'origin/test' into test

This commit is contained in:
张松 2025-10-28 14:56:18 +08:00
commit b355cd0ba7
1 changed files with 2 additions and 2 deletions

View File

@ -349,10 +349,10 @@ public class MkDistributionUserServiceImpl extends ServiceImpl<MkDistributionUse
@Override
public Page<InviteUserVO> getInviteUser(Long id, Integer page, Integer size) {
return pageAs(new Page<>(page, size), QueryWrapper.create()
return shopUserService.pageAs(new Page<>(page, size), QueryWrapper.create()
.select("head_img as headImg,nick_name as shopUserName,phone as shopUserPhone,one_income as oneIncome")
.eq(ShopUser::getDistributionUserId, id)
.orderBy(MkDistributionUser::getCreateTime).desc(), InviteUserVO.class);
.orderBy(ShopUser::getCreateTime).desc(), InviteUserVO.class);
}
@Override