From 66e80ddd501b68cdbb7426d92707d9417c828703 Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Thu, 04 Jan 2024 15:47:19 +0800 Subject: [PATCH] 团队列表 --- src/main/resources/mapper/modules/MallMemberAmountMapper.xml | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/modules/MallMemberAmountMapper.xml b/src/main/resources/mapper/modules/MallMemberAmountMapper.xml index 1173316..0b3f92a 100644 --- a/src/main/resources/mapper/modules/MallMemberAmountMapper.xml +++ b/src/main/resources/mapper/modules/MallMemberAmountMapper.xml @@ -35,6 +35,13 @@ where id = #{record.id} and revision=#{record.revision} </update> + <update id="updateGsdById"> + update mall_member_amount + set revision = revision + 1, + gsd = #{record.gsd} + where id = #{record.id} and revision=#{record.revision} + </update> + <update id="updateFrozenNftById"> update mall_member_amount set revision = revision + 1, @@ -50,4 +57,20 @@ where id = #{record.id} and revision=#{record.revision} </update> + <update id="updateTrendsNftAndGsdById"> + update mall_member_amount + set revision = revision + 1, + gsd = #{record.gsd}, + trends_nft = #{record.trendsNft} + where id = #{record.id} and revision=#{record.revision} + </update> + + <update id="updateFcmCntAvaAndGsdById"> + update mall_member_amount + set revision = revision + 1, + gsd = #{record.gsd}, + fcm_cnt_ava = #{record.fcmCntAva} + where id = #{record.id} and revision=#{record.revision} + </update> + </mapper> \ No newline at end of file -- Gitblit v1.9.1