<sql id="where_condition">
<where>
<if test="companyId != null">
and company_id = #{companyId}
</if>
<if test="likeEmployeeNameOrmobile != null and likeEmployeeNameOrmobile != '' ">
and (employee_name like concat('%', #{likeEmployeeNameOrmobile,jdbcType=VARCHAR}, '%') OR mobile like concat('%', #{likeEmployeeNameOrmobile,jdbcType=VARCHAR}, '%'))
</if>