|
@@ -364,6 +364,9 @@
|
|
|
#{eventTypeIdDl}
|
|
|
</foreach>
|
|
|
</if>
|
|
|
+ <if test="eventName != null and eventName != ''">
|
|
|
+ and event_name like concat('%', #{eventName},'%')
|
|
|
+ </if>
|
|
|
<if test="longitude != null and longitude!='' and latitude != null and latitude != '' and distance != null">
|
|
|
having distance < #{distance}
|
|
|
</if>
|
|
@@ -392,6 +395,9 @@
|
|
|
#{eventTypeId}
|
|
|
</foreach>
|
|
|
</if>
|
|
|
+ <if test="eventName != null and eventName != ''">
|
|
|
+ and event_name like concat('%', #{eventName},'%')
|
|
|
+ </if>
|
|
|
<if test="longitude != null and longitude!='' and latitude != null and latitude != '' and distance != null">
|
|
|
having distance < #{distance}
|
|
|
</if>
|