From fd2de42e8b0019e660f04c72d0a9d218e032f4e4 Mon Sep 17 00:00:00 2001
From: wuzeyu <1223318623@qq.com>
Date: 星期五, 05 七月 2024 13:59:02 +0800
Subject: [PATCH] 添加取水口和更改取水口时判断取水口是否重名

---
 pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeWalletRechargeMapper.xml |   66 +++++++++++++++++++++++++++++++++
 1 files changed, 66 insertions(+), 0 deletions(-)

diff --git a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeWalletRechargeMapper.xml b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeWalletRechargeMapper.xml
index 44fb44a..149a21a 100644
--- a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeWalletRechargeMapper.xml
+++ b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeWalletRechargeMapper.xml
@@ -123,4 +123,70 @@
       recharge_time = #{rechargeTime,jdbcType=TIMESTAMP}
     where id = #{id,jdbcType=BIGINT}
   </update>
+
+  <!--鏍规嵁鎸囧畾鏉′欢鑾峰彇鐢靛瓙閽卞寘鍏呭�艰褰曟暟-->
+  <select id="getRecordCount" parameterType="java.util.Map" resultType="java.lang.Long">
+    SELECT
+        COUNT(*) AS recordCount
+    FROM se_wallet_recharge rec
+        INNER JOIN se_client cli ON rec.client_id = cli.id
+    <where>
+      <if test = "walletId != null and walletId > 0">
+        AND rec.wallet_id = ${walletId}
+      </if>
+
+      <if test = "clientName != null and clientName !=''">
+        AND cli.name like CONCAT('%',#{clientName},'%')
+      </if>
+
+      <if test = "timeStart != null and timeStop != null">
+        AND rec.recharge_time BETWEEN #{timeStart} AND #{timeStop}
+      </if>
+    </where>
+  </select>
+
+  <!--鏍规嵁鎸囧畾鏉′欢鑾峰彇鐢靛瓙閽卞寘鍏呭�艰褰�-->
+  <select id="getWalletRecharges" resultType="com.dy.pipIrrGlobal.voSe.VoWalletRecharge">
+    SELECT
+        cli.`name`,
+        cli.clientNum,
+        cli.phone,
+        rec.amount,
+        rec.after_recharge AS afterRecharge,
+        rec.recharge_time AS rechargeTime
+    FROM se_wallet_recharge rec
+        INNER JOIN se_client cli ON rec.client_id = cli.id
+    <where>
+      <if test = "walletId != null and walletId > 0">
+        AND rec.wallet_id = ${walletId}
+      </if>
+
+      <if test = "clientName != null and clientName !=''">
+        AND cli.name like CONCAT('%',#{clientName},'%')
+      </if>
+
+      <if test = "timeStart != null and timeStop != null">
+        AND rec.recharge_time BETWEEN #{timeStart} AND #{timeStop}
+      </if>
+    </where>
+    ORDER BY rec.recharge_time DESC
+    <trim prefix="limit " >
+      <if test="start != null and count != null">
+        #{start,javaType=Integer,jdbcType=INTEGER}, #{count,javaType=Integer,jdbcType=INTEGER}
+      </if>
+    </trim>
+  </select>
+
+  <!--鑾峰彇鎸囧畾鏃ユ湡寰俊鏀舵鎬婚锛岃储鍔″璐﹀鏍搁〉浣跨敤-->
+  <select id="getRechargeSum" resultType="java.lang.Double">
+    SELECT
+        SUM(amount) AS tradeAmount
+    FROM se_wallet_recharge
+    <where>
+      <if test = "tradeDate != null and tradeDate !=''">
+        AND Date(recharge_time) = #{tradeDate}
+      </if>
+    </where>
+    GROUP BY Date(recharge_time)
+  </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.8.0