whycxzp
2025-04-25 0428d7bf35c95b33718ddcaf2e6e1311c5a40845
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.whyc.mapper.BattWarehouseMapper" >
 
 
    <update id="updateBatchById">
        <foreach collection="list" item="item" index="index" separator=";">
            update tb_batt_warehouse
            <set>
                <if test="item.taskNo != null">
                    task_no = #{item.taskNo},
                </if>
                <if test="item.onPlan != null">
                    on_plan = #{item.onPlan},
                </if>
            </set>
            where id = #{item.id}
        </foreach>
    </update>
</mapper>