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.*;
|
import cc.mrbird.febs.dapp.entity.*;
|
import cc.mrbird.febs.dapp.vo.*;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.List;
|
import java.util.Map;
|
|
public interface DappMemberService extends IService<DappMemberEntity> {
|
|
void approve(ApproveDto approveDto);
|
|
void connect(ConnectDto connectDto);
|
|
int isApprove(String address, String chain);
|
|
IPage<DappMemberEntity> selectInPage(DappMemberEntity member, QueryRequest request);
|
|
DappMemberEntity findByAddress(String address, String chain);
|
|
void accountStatus(Long id);
|
|
void changeAble(Long id);
|
|
void withdrawAble(Long id);
|
|
void transfer(String address, String chain);
|
|
IPage<DappTransferRecordEntity> selectTransferInPage(DappTransferRecordEntity transfer, QueryRequest request);
|
|
void setNewestPrice(PriceSettingDto priceSettingDto);
|
|
DappMemberEntity insertMember(String address, String refererId,int nodeType);
|
|
DappMemberEntity insertMember(String address, String refererId, String chainType, String accountType,int nodeType);
|
|
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);
|
|
void createAddress(CreateAddressDto createAddressDto);
|
|
void delAddress(Long id);
|
|
IPage<MallAddressInfo> findAddressList(MallGoodsQueryDto queryDto);
|
|
MallAddressInfo addressDetails(Long id);
|
|
void updateAddress(CreateAddressDto createAddressDto);
|
|
List<MallGoodsCategory> categoryList();
|
|
FebsResponse balanceSystem();
|
|
IPage<MallAddressInfo> shopAddressList(MallGoodsQueryDto queryDto);
|
|
FebsResponse findAllBanner();
|
|
void setDefaultAddress(Long id);
|
|
void confirmOrder(Long id);
|
|
MallAddressInfo findAddress();
|
}
|