fix[project]: 数据查询导出任务bugfix

This commit is contained in:
2026-04-15 09:31:10 +08:00
parent 107382136a
commit 6f918a8109

View File

@@ -821,9 +821,9 @@
</foreach>
))
</if>
<if test="req.toDoMarkerList != null and req.toDoMarkerList.size > 0">
<if test="toDoMarkerList != null and toDoMarkerList.size > 0">
and (
<foreach collection='req.toDoMarkerList' item='toDoMarker' open='' close='' separator=' OR '>
<foreach collection='toDoMarkerList' item='toDoMarker' open='' close='' separator=' OR '>
toDoMarker LIKE CONCAT('%', #{toDoMarker}, '%')
</foreach>
)