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
74
75
76
77
78
79
| <?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.contract.mapper.CoinMapper">
|
| <select id="selectBuyList" resultType="com.xcong.excoin.modules.contract.vo.CoinVo">
| select * from (
| select
| a.invite_id inviteId,
| a.phone phone,
| a.email email,
| b.amount_usdt usdtAmount,
| null coinAmount,
| b.order_no orderNo,
| 'USDT' symbol,
| b.create_time createTime
| from member a
| inner join member_quick_buy_sale b on a.id=b.member_id and b.order_type='B'
| where find_in_set(#{record.refererId}, a.referer_ids)
| <if test="record.account!=null and record.account!=''">
| and (a.phone=#{record.account} or a.email=#{record.account} or a.invite_id=#{record.account})
| </if>
| union
| select
| a.invite_id inviteId,
| a.phone phone,
| a.email email,
| null usdtAmount,
| b.amount coinAmount,
| b.order_code orderNo,
| b.symbol symbol,
| b.create_time createTime
| from member a
| inner join member_coin_charge b on a.id=b.member_id --and b.status=3
| where find_in_set(#{record.refererId}, a.referer_ids)
| <if test="record.account!=null and record.account!=''">
| and (a.phone=#{record.account} or a.email=#{record.account} or a.invite_id=#{record.account})
| </if>
| ) x
| order by createTime desc
| </select>
|
| <select id="selectSaleList" resultType="com.xcong.excoin.modules.contract.vo.CoinVo">
| select * from (
| select
| a.invite_id inviteId,
| a.phone phone,
| a.email email,
| b.amount_usdt usdtAmount,
| null coinAmount,
| b.order_no orderNo,
| 'USDT' symbol,
| b.create_time createTime
| from member a
| inner join member_quick_buy_sale b on a.id=b.member_id and b.order_type='S'
| where find_in_set(#{record.refererId}, a.referer_ids)
| <if test="record.account!=null and record.account!=''">
| and (a.phone=#{record.account} or a.email=#{record.account} or a.invite_id=#{record.account})
| </if>
| union
| select
| a.invite_id inviteId,
| a.phone phone,
| a.email email,
| null usdtAmount,
| b.amount coinAmount,
| '' orderNo,
| b.symbol symbol,
| b.create_time createTime
| from member a
| inner join member_coin_withdraw b on a.id=b.member_id --and b.status=2
| where find_in_set(#{record.refererId}, a.referer_ids)
| <if test="record.account!=null and record.account!=''">
| and (a.phone=#{record.account} or a.email=#{record.account} or a.invite_id=#{record.account})
| </if>
| ) x
| order by createTime desc
| </select>
|
| </mapper>
|
|