void bathchDeleteByEquipmentSystemIdsAndDate(@Param("equipmentSystemIdMonthSelectMap") Map<String, List<String>> equipmentSystemIdMonthSelectMap);
<delete id="bathchDeleteByEquipmentSystemIdsAndDate"> DELETE FROM interval_check WHERE <foreach item="item" index="key" collection="equipmentSystemIdMonthSelectMap.entrySet()" separator="or" > (equipment_system_id = #{key} AND verification_time IN <foreach item="date" index="dateIndex" collection="item" open="(" separator="," close=")"> #{date} </foreach> ) </foreach> </delete>