Commit 91664cad authored by chenzhao's avatar chenzhao

修改bug

parent e75a6dbd
......@@ -149,10 +149,10 @@
AND d.update_date BETWEEN '${startTime}' AND '${endTime}'
</if>
<if test="buildId!=null">
AND d.buildId in
<foreach item="item" index="index" collection="buildId" open="(" separator="," close=")">
AND d.buildId in #{buildId}
<!-- <foreach item="item" index="index" collection="buildId" open="(" separator="," close=")">
#{item}
</foreach>
</foreach>-->
</if>
</where>
</select>
......@@ -203,10 +203,11 @@
AND d.create_date BETWEEN '${startTime}' AND '${endTime}'
</if>
<if test="buildId!=null">
AND d.buildId in #{buildId}
AND d.buildId in
<foreach item="item" index="index" collection="buildId" open="(" separator="," close=")">
<!-- <foreach item="item" index="index" collection="buildId" open="(" separator="," close=")">
#{item}
</foreach>
</foreach>-->
</if>
</where>
ORDER BY d.create_date desc
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment