| | |
| | | package cc.mrbird.febs.dapp.service; |
| | | |
| | | import cc.mrbird.febs.common.entity.FebsResponse; |
| | | import cc.mrbird.febs.common.entity.QueryRequest; |
| | | import cc.mrbird.febs.dapp.dto.ApproveDto; |
| | | import cc.mrbird.febs.dapp.dto.ConnectDto; |
| | | import cc.mrbird.febs.dapp.dto.PriceSettingDto; |
| | | import cc.mrbird.febs.dapp.dto.TeamListDto; |
| | | import cc.mrbird.febs.dapp.dto.*; |
| | | import cc.mrbird.febs.dapp.entity.DappMemberEntity; |
| | | import cc.mrbird.febs.dapp.entity.DappSystemProfit; |
| | | import cc.mrbird.febs.dapp.entity.DappTransferRecordEntity; |
| | | import cc.mrbird.febs.dapp.vo.TeamLIstVo; |
| | | import cc.mrbird.febs.dapp.vo.TeamListVo; |
| | | import cc.mrbird.febs.dapp.vo.*; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | |
| | | |
| | | void setNewestPrice(PriceSettingDto priceSettingDto); |
| | | |
| | | DappMemberEntity insertMember(String address, String refererId); |
| | | DappMemberEntity insertMember(String address, String refererId,int nodeType); |
| | | |
| | | DappMemberEntity insertMember(String address, String refererId, String chainType, String accountType); |
| | | DappMemberEntity insertMember(String address, String refererId, String chainType, String accountType,int nodeType); |
| | | |
| | | List<TeamListVo> findTeamList(TeamListDto teamListDto); |
| | | TeamListVo findTeamList(); |
| | | |
| | | void setSystemFee(AdminSystemFeeVo adminSystemFeeVo); |
| | | |
| | | ApiRunListInfoVo findRunListInfo(); |
| | | |
| | | IPage<AdminDappSystemProfitVo> selectSystemProfitInPage(DappSystemProfit dappSystemProfit, QueryRequest request); |
| | | |
| | | IPage<AdminSystemProfitFlowListVo> getSystemProfitFlowList(DappSystemProfit dappSystemProfit, QueryRequest request); |
| | | |
| | | IPage<AdminTeamInfoVo> getTeamInfo(DappMemberEntity dappMemberEntity, QueryRequest request); |
| | | |
| | | FebsResponse getMemberInfo(); |
| | | |
| | | IPage<DappMemberNodeVo> getMemberNodeInfo(DappMemberEntity dappMemberEntity, QueryRequest request); |
| | | |
| | | FebsResponse insideWithYes(Long id); |
| | | |
| | | FebsResponse insideWithNo(Long id); |
| | | |
| | | List<AdminAgentLevelOptionTreeVo> getAgentLevelOption(); |
| | | |
| | | FebsResponse agentLevelSetUpdate(AgentLevelSetUpdateDto agentLevelSetUpdateDto); |
| | | |
| | | IPage<MallGoodsListVo> findMallGoodsListInPage(MallGoodsQueryDto queryDto); |
| | | |
| | | IPage<MallOrderListVo> findMallOrderListInPage(MallOrderQueryDto queryDto); |
| | | |
| | | MallOrderListVo findOrderDetailsById(Long id); |
| | | |
| | | MallGoodsListVo findGoodsDetailsById(Long id); |
| | | |
| | | Long createOrder(AddOrderDto addOrderDto); |
| | | |
| | | void cancelOrder(Long id); |
| | | |
| | | void payOrder(Long id); |
| | | |
| | | FebsResponse packageInfo(); |
| | | |
| | | FebsResponse salePackage(SalePackageDto salePackageDto); |
| | | |
| | | FebsResponse updateSystemPay(MallSystemPayDto mallSystemPayDto); |
| | | |
| | | IPage<MemberMoneyFlowVo> memberMoneyFlow(QueryRequest request, DappMemberEntity dappMemberEntity); |
| | | |
| | | void delOrder(Long id); |
| | | } |