邀请人列表

This commit is contained in:
2025-10-28 17:49:27 +08:00
parent 618286703e
commit faac76cc33
9 changed files with 31 additions and 39 deletions

View File

@@ -113,7 +113,7 @@ public class MkDistributionUserServiceImpl extends ServiceImpl<MkDistributionUse
Map<String, Object> result = new HashMap<>(5);
result.put("totalIncome", centerTopVO == null ? 0.0 : centerTopVO.getTotalIncome());
result.put("pendingIncome", centerTopVO == null ? 0.0 : centerTopVO.getPendingIncome());
result.put("cashOutAmount", centerTopVO == null ? 0.0 : centerTopVO.getCashOutAmount());
result.put("cashOutAmount", centerTopVO == null ? 0.0 : centerTopVO.getUnCashOutAmount());
result.put("activates", activates(userId, 1, 5));
result.put("unActivates", unActivates(userId, 1, 3));
@@ -380,8 +380,8 @@ public class MkDistributionUserServiceImpl extends ServiceImpl<MkDistributionUse
}
@Override
public Page<InviteUserVO> getInviteUser(Long id, Integer page, Integer size) {
return shopUserService.getInviteUser(id, page, size);
public Page<InviteUserVO> getInviteUser(Long id, Long shopUserId, Integer page, Integer size) {
return shopUserService.getInviteUser(id, shopUserId, page, size);
}
@Override