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.*;
|
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);
|
|
IPage<GbzOrderEntity> gbzOrderEntity(GbzOrderEntity gbzOrderEntity, QueryRequest request);
|
}
|