邀请人列表

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

@@ -1,10 +1,9 @@
package com.czg.account.service;
import com.czg.account.dto.shopuser.*;
import com.czg.account.dto.shopuser.ShopUserMoneyEditDTO;
import com.czg.account.entity.ShopUser;
import com.czg.market.vo.InviteUserVO;
import com.mybatisflex.core.paginate.Page;
import com.mybatisflex.core.query.QueryWrapper;
import com.mybatisflex.core.service.IService;
import java.time.LocalDate;
@@ -29,7 +28,7 @@ public interface ShopUserService extends IService<ShopUser> {
/**
* 获取邀请用户列表
*/
Page<InviteUserVO> getInviteUser(Long getDistributionUserId, Integer page, Integer size);
Page<InviteUserVO> getInviteUser(Long getDistributionUserId, Long shopUserId, Integer page, Integer size);
boolean updateInfo(ShopUser shopUser);

View File

@@ -65,7 +65,7 @@ public interface MkDistributionUserService extends IService<MkDistributionUser>
/**
* 获取分销员邀请人分页列表
*/
Page<InviteUserVO> getInviteUser(Long id, Integer page, Integer size);
Page<InviteUserVO> getInviteUser(Long id, Long shopUserId, Integer page, Integer size);
/**
* 分销员:按消费金额升级等级

View File

@@ -12,6 +12,10 @@ import java.time.LocalDateTime;
*/
@Data
public class InviteUserVO implements Serializable {
/**
* id
*/
private Long shopUserId;
/**
* 用户头像
*/