Merge branch 'prod' into test

This commit is contained in:
2026-02-04 14:21:01 +08:00
5 changed files with 15 additions and 12 deletions

View File

@@ -62,7 +62,9 @@ public class MkShareBaseServiceImpl extends ServiceImpl<MkShareBaseMapper, MkSha
}
//绑定上下级
if (StrUtil.isNotBlank(inviteCode)) {
FunUtils.safeRunVoid(() -> distributionUserService.bindInviteUser(fromUserId, toUserId, shopId), "shareClaim 绑定上下级");
FunUtils.safeRunVoid(() -> {
distributionUserService.bindInviteUser(fromUserId, toUserId, shopId);
}, "shareClaim绑定上下级");
}
MkShareBase shareBase = getById(shopId);
if (shareBase == null || !shareBase.getIsEnabled().equals(1) || StrUtil.isBlank(shareBase.getRewardSharePages())) {