| | |
| | | package com.xcong.excoin.modules.coin.dao;
|
| | |
|
| | | import java.util.Date;
|
| | | import java.util.List;
|
| | |
|
| | | import com.xcong.excoin.trade.ExchangeTrade;
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| | |
| | | IPage<OrderCoinsDealEntity> findAllWalletCoinOrderInPage(Page<OrderCoinsDealEntity> page,
|
| | | @Param("record") OrderCoinsDealEntity orderCoinsDealEntity);
|
| | |
|
| | | List<ExchangeTrade> selectOrderCoinDealByTime(@Param("symbol")String symbol, @Param("startTime")Date startTime, @Param("endTime")Date endTime);
|
| | |
|
| | | }
|