| | |
| | | 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.xcong.excoin.modules.coin.entity.OrderCoinDealEntity;
|
| | | import com.xcong.excoin.modules.coin.entity.OrderCoinsDealEntity;
|
| | |
|
| | | public interface OrderCoinDealDao extends BaseMapper<OrderCoinDealEntity>{
|
| | |
|
| | | 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);
|
| | | |
| | | }
|