分享 领取

This commit is contained in:
2026-01-27 16:22:56 +08:00
parent f2024d5be5
commit 52e8a209fb
6 changed files with 211 additions and 35 deletions

View File

@@ -60,9 +60,18 @@ public interface MkDistributionUserService extends IService<MkDistributionUser>
/**
* 分销员中心-绑定邀请人
* 通过邀请码
*/
void bindInviteUser(MkDistributionUserDTO param) throws CzgException, ValidateException;
/**
* 分销员中心-绑定邀请人
* 通过邀请人id
* @param fromUserId shopUserId 邀请人
* @param toUserId 被邀请人邀请人
*/
void bindInviteUser(Long fromUserId, Long toUserId, Long shopId) throws CzgException, ValidateException;
/**
* 获取分销员分页列表
*/

View File

@@ -12,4 +12,6 @@ import com.czg.market.entity.MkShareBase;
public interface MkShareBaseService extends IService<MkShareBase> {
MkShareBase getShareBase(Long shopId);
void shareClaim(String tagType, Long shopId, Long fromUserId, Long toUserId);
}