@@ -97,6 +97,9 @@
<if test="param.cameraSnCode != null and param.cameraSnCode != ''">
and r.camera_sn_code like concat ('%',#{param.cameraSnCode},'%')
</if>
+ <if test="param.customerName != null and param.customerName != ''">
+ and c.customer_name like concat ('%',#{param.customerName},'%')
+ </if>
order by r.create_time desc
</select>