xiaoyong931011
2021-11-29 43a51277c91dba52922379bdf8bf81622303ceaa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.xcong.excoin.modules.fish.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.excoin.common.entity.FebsResponse;
import com.xcong.excoin.common.entity.QueryRequest;
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;
 
public interface FishService extends IService<CannonExchangeRatio> {
 
    IPage<CannonExchangeRatio> exchangeRatio(CannonExchangeRatio cannonExchangeRatio, QueryRequest request);
 
    CannonExchangeRatio getExchangeRatioInfoById(long id);
 
    IPage<CannonSetting> cannonList(CannonSetting cannonSetting, QueryRequest request);
 
    void cannonAdd(CannonSetting cannonSetting);
 
    CannonSetting getCannonInfoById(long id);
 
    FebsResponse cannonUpdate(CannonSetting cannonSetting);
 
    FebsResponse exchangeRatioUpdate(CannonExchangeRatio cannonExchangeRatio);
 
    IPage<CannonAccountMoneyChangeVo> accountList(CannonAccountMoneyChange cannonAccountMoneyChange, QueryRequest request);
 
    IPage<MemberVo> memberList(MemberDto memberDto, QueryRequest request);
}