| | |
| | | <mapper namespace="com.ruoyi.auction.mapper.AuctionSalesroomGoodsMapper"> |
| | | <update id="updateBatchById" parameterType="java.util.List"> |
| | | UPDATE t_auction_salesroom_goods |
| | | SET status = CASE |
| | | SET |
| | | backup_status = CASE |
| | | <foreach collection="param" item="item" index="index"> |
| | | WHEN id = #{item.id} THEN #{item.backupStatus} |
| | | </foreach> |
| | | ELSE status END, |
| | | status = CASE |
| | | <foreach collection="param" item="item" index="index"> |
| | | WHEN id = #{item.id} THEN #{item.status} |
| | | </foreach> |
| | | END |
| | | ELSE status END |
| | | WHERE id IN |
| | | <foreach collection="param" index="index" item="item" open="(" separator="," close=")"> |
| | | #{item.id} |