huang
2024-11-26 45f64d8b130c57ff2b8e8442d65ab7a490e915e3
north-glass-erp/src/main/resources/mapper/mm/MaterialInventory.xml
@@ -1063,5 +1063,19 @@
    </select>
    <select id="deleteMaterialInventory">
        delete from
        mm.material_inventory mi
        <where>
            <if test="ids != null and ids != ''">
                and mi.id in
                <foreach item="id" collection="ids" open="(" separator="," close=")">
                    #{id}
                </foreach>
            </if>
        </where>
    </select>
</mapper>