邀请人分页列表

This commit is contained in:
2025-11-06 15:41:04 +08:00
parent e8e788cff4
commit 874ca79ef8
8 changed files with 14 additions and 12 deletions

View File

@@ -401,8 +401,8 @@ public class MkDistributionUserServiceImpl extends ServiceImpl<MkDistributionUse
}
@Override
public Page<InviteUserVO> getInviteUser(Long id, Long shopUserId, Long distributionLevelId, Integer page, Integer size) {
return shopUserService.getInviteUser(id, shopUserId, distributionLevelId, page, size);
public Page<InviteUserVO> getInviteUser(Long id, Long shopId, Long shopUserId, Long distributionLevelId, Integer page, Integer size) {
return shopUserService.getInviteUser(id, shopId, shopUserId, distributionLevelId, page, size);
}
@Override