@@ -47,6 +47,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="companyName != null and companyName != ''">
AND vtc.company_name like concat('%', #{companyName}, '%')
</if>
+ <if test="status != null and status.size()!=0 ">
+ AND rt.status in
+ <foreach collection="status" item="item" index="index" open="(" close=")" separator=",">
+ #{item}
+ </foreach>
+ </if>
ORDER BY
rt.id DESC
</select>