From 719c241b073cc7a5770cdf0b4d5aa3712432e6ab Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Fri, 20 Dec 2024 15:06:00 +0800 Subject: [PATCH] refactor(mall): 重构获取阿里云验证码接口 --- src/main/resources/mapper/modules/MallMemberWalletMapper.xml | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/modules/MallMemberWalletMapper.xml b/src/main/resources/mapper/modules/MallMemberWalletMapper.xml index 1f5e297..2a37ee5 100644 --- a/src/main/resources/mapper/modules/MallMemberWalletMapper.xml +++ b/src/main/resources/mapper/modules/MallMemberWalletMapper.xml @@ -51,4 +51,13 @@ </if> where id=#{record.id} and revision=#{record.revision} </update> + + <update id="updateScore"> + UPDATE mall_member_wallet + SET score = 0 + where id IN + <foreach collection = "list" item = "item" separator="," open = "(" close = ")" > + #{item} + </foreach > + </update> </mapper> \ No newline at end of file -- Gitblit v1.9.1