邀请人列表
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
/**
|
||||
* 分销员:按消费金额升级等级
|
||||
|
||||
@@ -12,6 +12,10 @@ import java.time.LocalDateTime;
|
||||
*/
|
||||
@Data
|
||||
public class InviteUserVO implements Serializable {
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
private Long shopUserId;
|
||||
/**
|
||||
* 用户头像
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user