@@ -50,6 +50,7 @@
<if test="dto.loopHealthLevel != null and dto.loopHealthLevel != ''"> and s.loop_health_level = #{dto.loopHealthLevel}</if>
<if test="dto.beginTime != null"> and s.tag_time > #{dto.beginTime} </if>
<if test="dto.endTime != null"> and s.tag_time < #{dto.endTime} </if>
+ <if test="dto.bypass != null and dto.bypass != ''"> and d.bypass = #{dto.bypass}</if>
</where>
order by s.tag_time desc
</select>