|
|
@ -26,20 +26,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
</resultMap> |
|
|
|
|
|
|
|
|
|
|
|
<!-- GROUP BY bill_code --> |
|
|
|
<!-- 转账 --> |
|
|
|
<select id="selectLastTransactionRecord" resultType="com.coin.business.domain.vo.RecordTransactionVo"> |
|
|
|
SELECT a.*,b.nick_name sender_name,c.nick_name receiver_name from( |
|
|
|
SELECT * |
|
|
|
from t_record_transaction |
|
|
|
SELECT a.*,b.nick_name sender_name,c.nick_name receiver_name |
|
|
|
from( |
|
|
|
SELECT a.* |
|
|
|
from t_record_transaction a |
|
|
|
left join t_user_account b on a.sender_account = b.account_id |
|
|
|
<where> |
|
|
|
<if test="search.id != null and search.id != ''"> |
|
|
|
and (sender_id = #{search.id} or receiver_id = #{search.id}) |
|
|
|
</if> |
|
|
|
sender_id = 1 and type like 'BT%' |
|
|
|
<if test="search.key != null and search.key != ''"> |
|
|
|
and ( |
|
|
|
sender_account like concat('%', #{search.key}, '%') |
|
|
|
or receiver_account like concat('%', #{search.key}, '%') |
|
|
|
or note like concat('%', #{search.key}, '%') |
|
|
|
sender_account like concat('%', #{search.key}, '%') |
|
|
|
or receiver_account like concat('%', #{search.key}, '%') |
|
|
|
) |
|
|
|
</if> |
|
|
|
<if test="search.start != null"> |
|
|
@ -49,19 +48,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
and time <= #{search.end} |
|
|
|
</if> |
|
|
|
</where> |
|
|
|
GROUP BY bill_code |
|
|
|
order by time desc |
|
|
|
limit 10 |
|
|
|
) a LEFT JOIN sys_user b on a.sender_id = b.user_id |
|
|
|
LEFT JOIN sys_user c on a.receiver_id = c.user_id |
|
|
|
where change_balance > 0 |
|
|
|
GROUP BY bill_code |
|
|
|
order by time desc limit 10 |
|
|
|
LEFT JOIN sys_user c on a.receiver_id = c.user_id |
|
|
|
|
|
|
|
</select> |
|
|
|
|
|
|
|
<select id="getRecordList" resultType="com.coin.business.domain.vo.RecordTransactionVo"> |
|
|
|
SELECT a.*,b.nick_name sender_name,c.nick_name receiver_name from( |
|
|
|
SELECT * |
|
|
|
from t_record_transaction |
|
|
|
SELECT a.*,b.nick_name sender_name,c.nick_name receiver_name |
|
|
|
from( |
|
|
|
SELECT a.* |
|
|
|
from t_record_transaction a |
|
|
|
left join t_user_account b on a.sender_account = b.account_id |
|
|
|
<where> |
|
|
|
(sender_id = #{search.id} or receiver_id = #{search.id}) |
|
|
|
sender_id = 1 and is_primary = 1 |
|
|
|
<if test="search.key != null and search.key != ''"> |
|
|
|
and ( |
|
|
|
sender_account like concat('%', #{search.key}, '%') |
|
|
@ -75,11 +77,34 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
and time <= #{search.end} |
|
|
|
</if> |
|
|
|
</where> |
|
|
|
GROUP BY bill_code |
|
|
|
order by time desc |
|
|
|
) a LEFT JOIN sys_user b on a.sender_id = b.user_id |
|
|
|
LEFT JOIN sys_user c on a.receiver_id = c.user_id |
|
|
|
where change_balance > 0 |
|
|
|
GROUP BY bill_code |
|
|
|
</select> |
|
|
|
|
|
|
|
<!-- SELECT a.*,b.nick_name sender_name,c.nick_name receiver_name from(--> |
|
|
|
<!-- SELECT *--> |
|
|
|
<!-- from t_record_transaction--> |
|
|
|
<!-- <where>--> |
|
|
|
<!-- (sender_id = #{search.id} or receiver_id = #{search.id})--> |
|
|
|
<!-- <if test="search.key != null and search.key != ''">--> |
|
|
|
<!-- and (--> |
|
|
|
<!-- sender_account like concat('%', #{search.key}, '%')--> |
|
|
|
<!-- or receiver_account like concat('%', #{search.key}, '%')--> |
|
|
|
<!-- )--> |
|
|
|
<!-- </if>--> |
|
|
|
<!-- <if test="search.start != null">--> |
|
|
|
<!-- and time >= #{search.start}--> |
|
|
|
<!-- </if>--> |
|
|
|
<!-- <if test="search.end != null">--> |
|
|
|
<!-- and time <= #{search.end}--> |
|
|
|
<!-- </if>--> |
|
|
|
<!-- </where>--> |
|
|
|
<!-- ) a LEFT JOIN sys_user b on a.sender_id = b.user_id--> |
|
|
|
<!-- LEFT JOIN sys_user c on a.receiver_id = c.user_id--> |
|
|
|
<!-- where change_balance > 0--> |
|
|
|
<!-- GROUP BY bill_code--> |
|
|
|
<!-- order by time desc--> |
|
|
|
|
|
|
|
</mapper> |
|
|
|