<update id="batchUpdateLevel" parameterType="map">
<foreach collection="sysDeptList" item="sysDept" separator=";">
UPDATE sys_dept
SET level = #{dept.level}
where id = #{dept.id}
</foreach>
</update>
老师,item不是设置为sysDept了吗, 此处为什么用的是dept.level 而不是sysDept.level?