package cc.mrbird.febs.dapp.mapper; import cc.mrbird.febs.dapp.entity.DappFundFlowEntity; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import org.apache.ibatis.annotations.Param; import java.math.BigDecimal; import java.util.Date; import java.util.List; import java.util.Map; public interface DappFundFlowDao extends BaseMapper { IPage selectInPage(Page page, @Param("record") DappFundFlowEntity dappFundFlowEntity); List selectListForMemberAndDay(@Param("memberId") Long memberId, @Param("type") int type); DappFundFlowEntity selectByFromHash(@Param("txHash") String txHash, @Param("status") Integer status); List selectFundFlowListByAddress(@Param("address") String address, @Param("status") Integer status); Map selectAmountTotalByType(@Param("memberId") Long memberId); }