|
@@ -191,11 +191,11 @@
|
|
<if test="param.repairId != null and param.repairId != ''">
|
|
<if test="param.repairId != null and param.repairId != ''">
|
|
and r.repair_id like concat ('%',#{param.repairId},'%')
|
|
and r.repair_id like concat ('%',#{param.repairId},'%')
|
|
</if>
|
|
</if>
|
|
- <if test="param.status != null">
|
|
|
|
- and r.status = #{param.status}
|
|
|
|
- </if>
|
|
|
|
- <if test="param.status != null and param.status ==90">
|
|
|
|
- and r.status in (90,91)
|
|
|
|
|
|
+ <if test="param.statusList != null and param.statusList.length >0">
|
|
|
|
+ and r.status in
|
|
|
|
+ <foreach item="status" collection="param.statusList" open="(" separator="," close=")">
|
|
|
|
+ #{status}
|
|
|
|
+ </foreach>
|
|
</if>
|
|
</if>
|
|
<if test="param.cameraType != null">
|
|
<if test="param.cameraType != null">
|
|
and r.camera_type = #{param.cameraType}
|
|
and r.camera_type = #{param.cameraType}
|