fix
Helius
2022-05-27 3d51d141bc43d68a738cd15183254f1b980bcb92
src/main/java/cc/mrbird/febs/mall/service/IApiMallMemberService.java
@@ -4,6 +4,9 @@
import cc.mrbird.febs.mall.dto.*;
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.MyCommissionVo;
import cc.mrbird.febs.mall.vo.MyTeamVo;
import com.baomidou.mybatisplus.extension.service.IService;
import java.math.BigDecimal;
@@ -28,13 +31,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);
    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 +50,12 @@
    List<MallMember> findRankList(RankListDto rankListDto);
    MallMember findMemberInfoByAccount(String phone);
    MyCommissionVo myCommission();
    void shopApply(ShopApplyDto shopApplyDto);
    MallShopApply findNewestApply();
    void addRegisterAppeal(RegisterAppealDto registerAppeal);
}