|
@@ -342,13 +342,16 @@
|
|
|
AND g.education_type_id = #{educationTypeId}
|
|
|
</if>
|
|
|
<if test="realname != null and realname != ''">
|
|
|
- AND u.realname = #{realname}
|
|
|
+ AND u.realname like concat('%', #{realname}, '%')
|
|
|
+ </if>
|
|
|
+ <if test="telphone != null and telphone != ''">
|
|
|
+ AND u.telphone = #{idCard,typeHandler=com.zhongzheng.common.type.EncryptHandler}
|
|
|
</if>
|
|
|
<if test="idCard != null and idCard != ''">
|
|
|
AND u.id_card = #{idCard,typeHandler=com.zhongzheng.common.type.EncryptHandler}
|
|
|
</if>
|
|
|
<if test="companyName != null and companyName != ''">
|
|
|
- AND u.company_name = #{companyName}
|
|
|
+ AND u.company_name like concat('%', #{companyName}, '%')
|
|
|
</if>
|
|
|
order by up.create_time desc
|
|
|
</select>
|