|
@@ -56,6 +56,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="companyId != null and companyId != ''" >
|
|
<if test="companyId != null and companyId != ''" >
|
|
|
AND rn.companyId = #{companyId}
|
|
AND rn.companyId = #{companyId}
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="city != null and city != ''">
|
|
|
|
|
+ AND rn.city like concat('%', #{city}, '%')
|
|
|
|
|
+ </if>
|
|
|
<if test="job != null and job != ''">
|
|
<if test="job != null and job != ''">
|
|
|
AND rn.job like concat('%', #{job}, '%')
|
|
AND rn.job like concat('%', #{job}, '%')
|
|
|
</if>
|
|
</if>
|