| | |
| | | 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<CannonExchangeRatio> { |
| | |
| | | IPage<CannonSetting> findCannonSettingInPage(Page<CannonSetting> page, @Param("record")CannonSetting cannonSetting); |
| | | |
| | | IPage<CannonAccountMoneyChangeVo> findCannonAccountMoneyChangeInPage(Page<CannonAccountMoneyChangeVo> page, @Param("record")CannonAccountMoneyChange cannonAccountMoneyChange); |
| | | |
| | | IPage<MemberVo> findMemberVoInPage(Page<MemberVo> page, @Param("record")MemberDto memberDto); |
| | | } |