Commit 91664cad authored by chenzhao's avatar chenzhao

修改bug

parent e75a6dbd
...@@ -149,10 +149,10 @@ ...@@ -149,10 +149,10 @@
AND d.update_date BETWEEN '${startTime}' AND '${endTime}' AND d.update_date BETWEEN '${startTime}' AND '${endTime}'
</if> </if>
<if test="buildId!=null"> <if test="buildId!=null">
AND d.buildId in AND d.buildId in #{buildId}
<foreach item="item" index="index" collection="buildId" open="(" separator="," close=")"> <!-- <foreach item="item" index="index" collection="buildId" open="(" separator="," close=")">
#{item} #{item}
</foreach> </foreach>-->
</if> </if>
</where> </where>
</select> </select>
...@@ -203,10 +203,11 @@ ...@@ -203,10 +203,11 @@
AND d.create_date BETWEEN '${startTime}' AND '${endTime}' AND d.create_date BETWEEN '${startTime}' AND '${endTime}'
</if> </if>
<if test="buildId!=null"> <if test="buildId!=null">
AND d.buildId in #{buildId}
AND d.buildId in 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} #{item}
</foreach> </foreach>-->
</if> </if>
</where> </where>
ORDER BY d.create_date desc 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