main
han-l 2 years ago
parent f54b7296e5
commit 0439b48c3e

@ -37,17 +37,17 @@
</if>
<if test="params.workorderno !=null and params.workorderno != ''">
AND u.WORKORDERNO LIKE CONCAT('%', #{params.workorderno}, '%')
AND u.WORKORDERNO LIKE '%#{params.workorderno}%'
</if>
<if test="params.title !=null and params.title != ''">
AND u.TITLE LIKE CONCAT('%', #{params.title}, '%')
AND u.TITLE LIKE '%#{params.title}%'
</if>
<if test="params.remarks !=null and params.remarks != ''">
AND u.REMARKS LIKE CONCAT('%', #{params.remarks}, '%')
AND u.REMARKS LIKE '%#{params.remarks}%'
</if>
<if test="params.stanos !=null and params.stanos != ''">
AND u.STANOS LIKE CONCAT('%', #{params.stanos}, '%')
AND u.STANOS LIKE '%#{params.stanos}%'
</if>
</where>

Loading…
Cancel
Save