修复bug

This commit is contained in:
2025-08-11 13:58:12 +08:00
parent 9581a11ade
commit 7c3279e71a
3 changed files with 8 additions and 2 deletions

View File

@@ -381,6 +381,12 @@
#{id}
</foreach>
</delete>
<delete id="deleteMaterialById" parameterType="String">
delete from industry_material where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
<delete id="deleteIndustryMaterialByState" parameterType="Long">
delete from industry_material where state = #{state}