xiaoyong931011
2021-06-15 5e75c6faae3a68ec672db2ca509a2de9f863d0b6
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
package com.xcong.excoin.modules.trademanage.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.member.entity.MemberAccountMoneyChangeEntity;
import com.xcong.excoin.modules.member.entity.MemberEntity;
import com.xcong.excoin.modules.trademanage.dto.BzzNewPriceDto;
import com.xcong.excoin.modules.trademanage.entity.AgentReturnEntity;
import com.xcong.excoin.modules.trademanage.entity.ContractHoldOrderEntity;
import com.xcong.excoin.modules.trademanage.entity.ContractOrderEntity;
import com.xcong.excoin.modules.trademanage.entity.OrderCoinsDealEntity;
import com.xcong.excoin.modules.trademanage.vo.BzzNewPriceVo;
import com.xcong.excoin.modules.trademanage.vo.MemberAccountInfoVo;
 
/**
 * @author helius
 */
public interface OrderCoinDealService extends IService<OrderCoinsDealEntity> {
 
    IPage<OrderCoinsDealEntity> findOrderCoinsDealListInPage(OrderCoinsDealEntity contractHoldOrderEntity, QueryRequest request);
 
    IPage<BzzNewPriceVo> bzzNewPrice(QueryRequest request);
 
    FebsResponse bzzNewPriceUpdate(BzzNewPriceDto bzzNewPriceDto);
}