xiaoyong931011
2021-12-01 9d3ab9b4ccd1bd6159af8743ee8df6f70a43b1d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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<CannonExchangeRatio> {
 
    IPage<CannonExchangeRatio> findExchangeRatioInPage(Page<CannonExchangeRatio> page, @Param("record") CannonExchangeRatio 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);
}