cpv
zainali5120
2020-10-09 572cd528259f5affdf91b1da6f6d5ab973056655
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.xcong.excoin.modules.coin.dao.OrderCoinDealDao">
 
    <select id="selectAllWalletCoinOrder" resultType="com.xcong.excoin.modules.coin.entity.OrderCoinsDealEntity">
        select * from coins_order_deal
        <where>
            <if test="memberId != null  and  memberId  != ''">
                and member_id = #{memberId}
            </if>
        </where>
        order by create_time desc
    </select>
 
    <select id="selectOrderCoinDealByTime" resultType="com.xcong.excoin.trade.ExchangeTrade">
        SELECT
            symbol symbol,
            deal_price price,
            symbol_cnt amount,
            deal_amount buyTurnover,
            deal_amount sellTurnover,
            order_type direction,
            UNIX_TIMESTAMP(create_time) time
          from coins_order_deal
          where symbol = #{symbol}
          and order_type  = 1
          and order_status = 3
          <if test="startTime != null and endTime != null">
              and create_time between #{startTime} and #{endTime}
          </if>
 
    </select>
    <select id="selectAllWalletCoinOrderBySymbol"
            resultType="com.xcong.excoin.modules.coin.entity.OrderCoinsDealEntity">
        select * from coins_order_deal
        <where>
            <if test="memberId != null  and  memberId  != ''">
                and member_id = #{memberId}
            </if>
            <if test="symbol != null  and  symbol  != ''">
                and symbol = #{symbol}
            </if>
        </where>
        order by create_time desc
    </select>
 
    <select id="selectAllCoinDealsOrderBySymbol"
            resultType="com.xcong.excoin.modules.coin.entity.OrderCoinsDealEntity">
        select * from coins_order_deal
        where symbol = #{symbol} and order_status = 3
        order by create_time desc limit 50
    </select>
 
    <select id="selectWalletCoinOrder" resultType="com.xcong.excoin.modules.coin.entity.OrderCoinsDealEntity">
        select * from coins_order_deal where order_id= #{orderId} and member_id = #{memberId}
    </select>
 
    <select id="findAllWalletCoinOrderInPage" resultType="com.xcong.excoin.modules.coin.entity.OrderCoinsDealEntity">
        select * from coins_order_deal
        <if test="record != null">
            <where>
                <if test="record.memberId != null">
                    and member_id=#{record.memberId}
                </if>
                <if test="record.symbol != null and record.symbol != ''">
                    and symbol = #{record.symbol}
                </if>
            </where>
        </if>
        order by create_time desc
    </select>
 
</mapper>