From 2a1453be9a2ea0e6ecaef7009bea19cc612bc343 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Thu, 01 Dec 2022 16:11:36 +0800
Subject: [PATCH] 20221130

---
 src/main/resources/mapper/dapp/DappSystemProfitDao.xml |   36 ++++++++++++++++++++++++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)

diff --git a/src/main/resources/mapper/dapp/DappSystemProfitDao.xml b/src/main/resources/mapper/dapp/DappSystemProfitDao.xml
index a584bc4..02c7329 100644
--- a/src/main/resources/mapper/dapp/DappSystemProfitDao.xml
+++ b/src/main/resources/mapper/dapp/DappSystemProfitDao.xml
@@ -19,4 +19,40 @@
         for update
     </select>
 
+    <update id="updateLevelProfitById">
+        update dapp_system_profit
+        set level_Profit = #{levelProfit}
+        where id = #{id}
+    </update>
+
+    <update id="updateStateById">
+        update dapp_system_profit
+        set state = #{state}
+        where id = #{id}
+    </update>
+
+    <select id="selectByMemberIdAndState" resultType="cc.mrbird.febs.dapp.entity.DappSystemProfit">
+        select a.*
+        from dapp_system_profit a
+        where state = #{state}
+        and member_id = #{memberId}
+            limit 1
+    </select>
+
+    <select id="selectSystemProfitOutByState" resultType="cc.mrbird.febs.dapp.entity.DappSystemProfit">
+        select a.*
+        from dapp_system_profit a
+        where state = #{state}
+        order by id desc
+            limit 1
+    </select>
+
+    <select id="selectSystemProfitInByState" resultType="cc.mrbird.febs.dapp.entity.DappSystemProfit">
+        select a.*
+        from dapp_system_profit a
+        where state = #{state}
+        order by id ASC
+            limit 1
+    </select>
+
 </mapper>
\ No newline at end of file

--
Gitblit v1.9.1