From 5771c822e99c38f0484559f1f68843979f0df24b Mon Sep 17 00:00:00 2001
From: 44323 <443237572@qq.com>
Date: 星期三, 20 九月 2023 19:12:54 +0800
Subject: [PATCH] 后台代码

---
 cloud-server-account/src/main/resources/mapper/RechargeRecordsMapper.xml |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/cloud-server-account/src/main/resources/mapper/RechargeRecordsMapper.xml b/cloud-server-account/src/main/resources/mapper/RechargeRecordsMapper.xml
index 48dd4bb..f166233 100644
--- a/cloud-server-account/src/main/resources/mapper/RechargeRecordsMapper.xml
+++ b/cloud-server-account/src/main/resources/mapper/RechargeRecordsMapper.xml
@@ -3,4 +3,31 @@
 <mapper namespace="com.dsh.account.mapper.RechargeRecordsMapper">
 
 
+    <select id="rechargeList" resultType="com.dsh.account.model.vo.RechargeRecordsVO">
+        select t1.id as id,t1.appUserId,t1.payTime as `time`,t1.amount as amount,
+        t1.playPaiCoins as playPaiCoins,CONCAT(t2.province,t2.city) as provinceAndCity,
+        t2.`name` as `name`,t2.phone as phone,t2.isVip as `type` from t_recharge_records t1
+        left join t_app_user t2 on t2.id = t1.appUserId
+        <where>
+            <if test="query.city!=null and query.city!= ''">
+                and t1.city = #{query.city}
+            </if>
+            <if test="query.province!=null and query.province!= ''">
+                and t1.province = #{query.province}
+            </if>
+            <if test="query.name!=null and query.name!= ''">
+                AND t1.name LIKE concat('%',#{query.name},'%')
+            </if>
+            <if test="query.phone!=null and query.phone!= ''">
+                and t1.phone LIKE concat('%',#{query.phone},'%')
+            </if>
+            <if test="query.type!=null and query.type!= ''">
+                and t2.isVip = #{query.type}
+            </if>
+            <if test="sTime !=null and sTime!= '' and eTime !=null and eTime!= ''">
+                and t1.payTime between #{sTime} and #{eTime}
+            </if>
+            and t1.state != 3
+        </where>
+    </select>
 </mapper>

--
Gitblit v1.7.1