| | |
| | | package com.xcong.excoin.modules.coin.dao;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | 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.coin.entity.OrderCoinsDealEntity;
|
| | | import com.xcong.excoin.modules.contract.entity.ContractOrderEntity;
|
| | |
|
| | | public interface OrderCoinDealDao extends BaseMapper<OrderCoinsDealEntity>{
|
| | | |
| | | List<OrderCoinsDealEntity> selectAllWalletCoinOrder(@Param("memberId")Long memberId);
|
| | | |
| | | List<OrderCoinsDealEntity> selectAllWalletCoinOrderBySymbol(@Param("memberId")Long memberId,@Param("symbol")String symbol);
|
| | | |
| | | OrderCoinsDealEntity selectWalletCoinOrder(@Param("memberId")Long memberId,@Param("orderId")Long orderId);
|
| | |
|
| | | IPage<OrderCoinsDealEntity> findAllWalletCoinOrderInPage(Page<OrderCoinsDealEntity> page,
|
| | | @Param("record") OrderCoinsDealEntity orderCoinsDealEntity);
|
| | |
|
| | | |
| | | }
|