Helius
2021-03-30 60def2b83b84f3e5b743e55e24bfa84e7560152b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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.OrderCoinsEntity;
 
public interface OrderCoinsDao extends BaseMapper<OrderCoinsEntity>{
    
    long getOrderCountByToday(@Param("now")String now,@Param("tomorrow") String tomorrow);
 
    List<OrderCoinsEntity> findCoinOrderListByMemberIdAndSysmbol(@Param("memberId")Long memberId,@Param("symbol")String symbol,@Param("status")int status);
 
    OrderCoinsEntity findWalletCoinOrderByOrderNo(@Param("orderNo")String orderNo);
 
    List<OrderCoinsEntity> selectAllEntrustingCoinOrderList();
}