|
|
@ -49,7 +49,12 @@ |
|
|
|
WHERE |
|
|
|
del_flag = '0' |
|
|
|
AND customer_id = #{customerId} |
|
|
|
AND real_name LIKE CONCAT('%', #{realName}, '%') |
|
|
|
<if test='null != realName and "" !=realName'> |
|
|
|
AND real_name LIKE CONCAT('%', #{realName}, '%') |
|
|
|
</if> |
|
|
|
<if test='null != mobile and "" !=mobile'> |
|
|
|
and MOBILE LIKE CONCAT('%', #{mobile}, '%') |
|
|
|
</if> |
|
|
|
</select> |
|
|
|
|
|
|
|
<select id="selectOrderRole" resultType="java.lang.String"> |
|
|
|