From 7ecd2c9bb7b1a77fd2d55a59b2ce85c9ddb26ee7 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Fri, 13 Oct 2023 11:11:06 +0800 Subject: [PATCH] redbagprod --- src/main/resources/mapper/modules/ChatUserMapper.xml | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/modules/ChatUserMapper.xml b/src/main/resources/mapper/modules/ChatUserMapper.xml index cf2b4c5..f6aeff2 100644 --- a/src/main/resources/mapper/modules/ChatUserMapper.xml +++ b/src/main/resources/mapper/modules/ChatUserMapper.xml @@ -186,6 +186,7 @@ a.amount_min amountMin, a.amount_max amountMax, a.red_bag_cnt redBagCnt, + a.auto_send autoSend, b.phone phone, b.nick_name nickName, a.create_time createTime @@ -224,4 +225,11 @@ where id = #{id} </select> + <update id="updateAutoSendByGroupId"> + update chat_group + set + auto_send = #{autoSend} + where id = #{id} + </update> + </mapper> \ No newline at end of file -- Gitblit v1.9.1