From df998a061e22b13297e02eee97e2418e4bbeaa1a Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Mon, 23 Oct 2023 10:25:57 +0800
Subject: [PATCH] 版本管理

---
 src/main/resources/mapper/modules/ChatUserMapper.xml |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/src/main/resources/mapper/modules/ChatUserMapper.xml b/src/main/resources/mapper/modules/ChatUserMapper.xml
index 7f16fce..a9c4960 100644
--- a/src/main/resources/mapper/modules/ChatUserMapper.xml
+++ b/src/main/resources/mapper/modules/ChatUserMapper.xml
@@ -203,6 +203,12 @@
         order by a.create_time desc
     </select>
 
+    <select id="selectVersionListInPage" resultType="cc.mrbird.febs.mall.vo.AdminVersionVo">
+        select
+        a.*
+        from chat_version a
+    </select>
+
     <update id="updateIsRobotByGroupId">
         update chat_group
         set
@@ -226,6 +232,13 @@
         where id = #{id}
     </select>
 
+    <select id="getVersionInfoById" resultType="cc.mrbird.febs.mall.vo.AdminVersionVo">
+        select
+            a.*
+        from chat_version a
+        where id = #{id}
+    </select>
+
     <update id="updateAutoSendByGroupId">
         update chat_group
         set

--
Gitblit v1.9.1