1. 程式人生 > >對映檔案接收持久層傳遞的資料

對映檔案接收持久層傳遞的資料

<!--實現item資料狀態更新操作
map集合 collection="map中的key"
array陣列 collection="array"
List集合 collection="list"
-->
<!-- <update id="updateStatus">
update tb_item set status = #{status},updated = now()
where id in (
<foreach collection="ids" item="id" separator=",">
#{id}
</foreach>
)
</update> -->