From 1730a7fc4bb96f258d9dc8dec2e629cadbfdefc0 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期三, 18 六月 2025 13:47:42 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/2.0' into 2.0 --- ruoyi-modules/ruoyi-shop/src/main/resources/mapper/task/ShopFileMapper.xml | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/ruoyi-modules/ruoyi-shop/src/main/resources/mapper/task/ShopFileMapper.xml b/ruoyi-modules/ruoyi-shop/src/main/resources/mapper/task/ShopFileMapper.xml index d72bdb3..37e52c7 100644 --- a/ruoyi-modules/ruoyi-shop/src/main/resources/mapper/task/ShopFileMapper.xml +++ b/ruoyi-modules/ruoyi-shop/src/main/resources/mapper/task/ShopFileMapper.xml @@ -70,4 +70,10 @@ UPDATE t_shop_file SET del_flag = 1 WHERE shop_id = #{shopId} </update> + <update id="deleteBatchByShopIds"> + update t_shop_file set del_flag =1 where shop_id in + <foreach collection="shopIds" item="shopId" open="(" separator="," close=")"> + #{shopId} + </foreach> + </update> </mapper> -- Gitblit v1.7.1