package com.xcong.excoin.modules.fish.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.xcong.excoin.modules.fish.dto.MemberDto; import com.xcong.excoin.modules.fish.entity.CannonAccountMoneyChange; import com.xcong.excoin.modules.fish.entity.CannonExchangeRatio; import com.xcong.excoin.modules.fish.entity.CannonSetting; import com.xcong.excoin.modules.fish.vo.CannonAccountMoneyChangeVo; import com.xcong.excoin.modules.fish.vo.MemberVo; import org.apache.ibatis.annotations.Param; public interface CannonExchangeRatioMapper extends BaseMapper { IPage findExchangeRatioInPage(Page page, @Param("record") CannonExchangeRatio cannonExchangeRatio); IPage findCannonSettingInPage(Page page, @Param("record")CannonSetting cannonSetting); IPage findCannonAccountMoneyChangeInPage(Page page, @Param("record")CannonAccountMoneyChange cannonAccountMoneyChange); IPage findMemberVoInPage(Page page, @Param("record")MemberDto memberDto); }