|
|
|
<?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.ruoyi.tc.mapper.UnitOtherConcatMapper">
|
|
|
|
|
|
|
|
<update id="deleteByUnitIds">
|
|
|
|
update asset_supply_chain set del_flag = '2' where unit_id in
|
|
|
|
<foreach collection="idList" item="id" open="(" separator="," close=")">
|
|
|
|
#{id}
|
|
|
|
</foreach>
|
|
|
|
</update>
|
|
|
|
<update id="deleteByAssetIds">
|
|
|
|
update asset_supply_chain set del_flag = '2' where asset_id in
|
|
|
|
<foreach collection="idList" item="id" open="(" separator="," close=")">
|
|
|
|
#{id}
|
|
|
|
</foreach>
|
|
|
|
</update>
|
|
|
|
</mapper>
|