package com.xcong.excoin.modules.coin.dao; import java.util.List; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.xcong.excoin.modules.coin.entity.MemberAccountMoneyChange; public interface MemberAccountMoneyChangeDao extends BaseMapper{ List selectWalletCoinRecordsByMemIdTypeSymbol(Long memberId); List selectWalletContractRecordsByMemIdTypeSymbol(String symbol, Long memberId); List selectWalletAgentRecordByMemIdTypeSymbol(String symbol, Long memberId); }