|  |  |  | 
|---|
|  |  |  | 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.vo.MyCommissionVo; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.extension.service.IService; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.math.BigDecimal; | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public interface IApiMallMemberService extends IService<MallMember> { | 
|---|
|  |  |  | FebsResponse register(RegisterDto registerDto); | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 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); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | MallMemberPayment findMemberPayment(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | void bindPhone(AccountAndCodeDto accountAndCodeDto); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | BigDecimal canMoney(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<MallMember> findRankList(RankListDto rankListDto); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | MallMember findMemberInfoByAccount(String phone); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | MyCommissionVo myCommission(); | 
|---|
|  |  |  | } | 
|---|