集合返回3

This commit is contained in:
2025-10-28 15:25:47 +08:00
parent 1562554160
commit 95a9d30e78
3 changed files with 24 additions and 7 deletions

View File

@@ -2,6 +2,8 @@ package com.czg.account.service;
import com.czg.account.dto.shopuser.*;
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;
@@ -24,6 +26,11 @@ public interface ShopUserService extends IService<ShopUser> {
ShopUser getShopUserInfo(Long shopId, long userId);
/**
* 获取邀请用户列表
*/
Page<InviteUserVO> getInviteUser(Long getDistributionUserId, Integer page, Integer size);
boolean updateInfo(ShopUser shopUser);