From 0a9a71a81a9d4c3c0df7ddf49e5e2f2d0a10f7de Mon Sep 17 00:00:00 2001 From: Administrator <15274802129@163.com> Date: Thu, 05 Jun 2025 16:23:51 +0800 Subject: [PATCH] feat(mall): 添加积分排行榜功能 --- src/main/java/cc/mrbird/febs/mall/service/IApiMallMemberService.java | 91 ++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 89 insertions(+), 2 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/service/IApiMallMemberService.java b/src/main/java/cc/mrbird/febs/mall/service/IApiMallMemberService.java index 3bbdb49..62844a0 100644 --- a/src/main/java/cc/mrbird/febs/mall/service/IApiMallMemberService.java +++ b/src/main/java/cc/mrbird/febs/mall/service/IApiMallMemberService.java @@ -2,12 +2,20 @@ import cc.mrbird.febs.common.entity.FebsResponse; import cc.mrbird.febs.mall.dto.*; +import cc.mrbird.febs.mall.dto.memberLevel.*; import cc.mrbird.febs.mall.entity.MallMember; import cc.mrbird.febs.mall.entity.MallMemberPayment; +import cc.mrbird.febs.mall.entity.MallShopApply; +import cc.mrbird.febs.mall.vo.CashOutSettingVo; +import cc.mrbird.febs.mall.vo.MyCommissionVo; +import cc.mrbird.febs.mall.vo.MyTeamVo; +import cc.mrbird.febs.mall.vo.ShopListVo; import com.baomidou.mybatisplus.extension.service.IService; +import java.io.IOException; import java.math.BigDecimal; import java.util.List; +import java.util.Map; public interface IApiMallMemberService extends IService<MallMember> { FebsResponse register(RegisterDto registerDto); @@ -28,13 +36,13 @@ FebsResponse teamList(TeamListDto teamListDto); + MyTeamVo teamListForMine(TeamListDto teamListDto); + FebsResponse moneyFlows(MoneyFlowDto moneyFlowDto); void addMoneyFlow(Long memberId, BigDecimal amount, Integer type, String orderNo, String description, String remark, Long rtMemberId, Integer status, Integer flowType); void transfer(TransferDto transferDto); - - void withdrawal(WithdrawalDto withdrawalDto); void setPayment(MallMemberPayment mallMemberPayment); @@ -47,4 +55,83 @@ List<MallMember> findRankList(RankListDto rankListDto); MallMember findMemberInfoByAccount(String phone); + + MyCommissionVo myCommission(); + + void shopApply(ShopApplyDto shopApplyDto); + + MallShopApply findNewestApply(); + + void addRegisterAppeal(RegisterAppealDto registerAppeal); + + CashOutSettingVo cashOutSetting(); + + List<ShopListVo> findShopListVo(ShopListDto shopListDto); + + FebsResponse xcxLogin(ApiXcxLoginDto apiXcxLoginDto) throws IOException; + + FebsResponse xcxSaveInfo(ApiXcxSaveInfoDto apiXcxSaveInfoDto); + + FebsResponse xcxPhoneLogin(ApiXcxPhoneLoginDto apiXcxPhoneLoginDto); + + FebsResponse xcxOpen(ApiXcxOpenDto apiXcxOpenDto); + + FebsResponse rechargeWallet(ApiRechargeWalletDto apiRechargeWalletDto); + + void updateMemberAgent(Long memberId,String levelCode); + + FebsResponse agentDetail(); + + FebsResponse activityInfo(); + + FebsResponse agentApplyInfo(); + + FebsResponse getCoupon(GetCouponDto getCouponDto); + + FebsResponse scanCoupon(GetCouponDto getCouponDto); + + FebsResponse memberCoupon(MallMemberCouponDto mallMemberCouponDto); + FebsResponse memberPayCoupon(MallMemberCouponDto mallMemberCouponDto); + + FebsResponse couponDetails(Long id); + + FebsResponse setInvite(ApiSetInviteDto apiSetInviteDto); + + Map<String, Object> loginEvent(); + + FebsResponse storeList(MallStoreDto mallStoreDto); + + FebsResponse storeItemList(MallStoreItemDto mallStoreItemDto); + + FebsResponse bindStoreMember(BindStoreMemberDto bindStoreMemberDto); + + FebsResponse bindList(); + + FebsResponse bindResult(BindResultDto bindResultDto); + + FebsResponse bindDoctor(ApiDoctorBindDto dto); + + FebsResponse doctorList(ApiDoctorListDto dto); + + FebsResponse authList(); + + FebsResponse authDel(ApiDoctorAuthDeleteDto dto); + + FebsResponse flowList(ApiMoneyFlowDto dto); + + FebsResponse flowHeader(); + + FebsResponse newGiftEvent(); + + FebsResponse getLabelList(); + + FebsResponse getLabelListById(ApiMemberLabelInfoDto dto); + + FebsResponse scoreRecord(ApiScoreRecordInfoDto dto); + + FebsResponse getMemberLabelListById(ApiMemberLabelItemDto dto); + + FebsResponse addLabelMember(ApiMemberLabelAddDto dto); + + FebsResponse insureLabelMember(ApiMemberLabelInsureDto dto); } -- Gitblit v1.9.1