1、修复人员证照中按姓名搜索无效bug
parent
aac0aa136f
commit
c0a03e6735
|
|
@ -31,7 +31,7 @@
|
||||||
</if>
|
</if>
|
||||||
|
|
||||||
<if test="params.likeUserName != null and params.likeUserName != ''">
|
<if test="params.likeUserName != null and params.likeUserName != ''">
|
||||||
AND u.username LIKE CONCAT('%', #{params.likeUserName}, '%')
|
AND u.name LIKE CONCAT('%', #{params.likeUserName}, '%')
|
||||||
</if>
|
</if>
|
||||||
<if test="params.eqIndustryCategoryCode != null and params.eqIndustryCategoryCode != ''">
|
<if test="params.eqIndustryCategoryCode != null and params.eqIndustryCategoryCode != ''">
|
||||||
AND uc.industry_category_code = #{params.eqIndustryCategoryCode}
|
AND uc.industry_category_code = #{params.eqIndustryCategoryCode}
|
||||||
|
|
@ -82,7 +82,7 @@
|
||||||
</if>
|
</if>
|
||||||
|
|
||||||
<if test="params.likeUserName != null and params.likeUserName != ''">
|
<if test="params.likeUserName != null and params.likeUserName != ''">
|
||||||
AND u.username LIKE CONCAT('%', #{params.likeUserName}, '%')
|
AND u.name LIKE CONCAT('%', #{params.likeUserName}, '%')
|
||||||
</if>
|
</if>
|
||||||
<if test="params.eqIndustryCategoryCode != null and params.eqIndustryCategoryCode != ''">
|
<if test="params.eqIndustryCategoryCode != null and params.eqIndustryCategoryCode != ''">
|
||||||
AND uc.industry_category_code = #{params.eqIndustryCategoryCode}
|
AND uc.industry_category_code = #{params.eqIndustryCategoryCode}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue