gao
2020-05-27 7fe6d6283dfda883bb50617b1aaeb83b2046f8df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.xcong.excoin.modules.coin.dao;
 
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);
 
    OrderCoinsEntity findCoinOrderListByMemberIdAndSysmbol(@Param("memberId")Long memberId,@Param("symbol")String symbol,@Param("status")int status);
 
    OrderCoinsEntity findWalletCoinOrderByOrderNo(@Param("orderNo")String orderNo);
}