|
@@ -38,6 +38,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
o.travelers,
|
|
|
o.status,
|
|
|
o.has_reach,
|
|
|
+ o.create_time,
|
|
|
l.title as lineTitle,
|
|
|
l.image as limeImage,
|
|
|
l.type as lineType,
|
|
@@ -88,7 +89,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
AND #{params.secondEndTime} >= o.travel_end_time
|
|
|
</if>
|
|
|
<if test="params.keyWord != null and params.keyWord != ''">
|
|
|
- AND l.title like concat('%', #{keyWord}, '%')
|
|
|
+ AND l.title like concat('%', #{params.keyWord}, '%')
|
|
|
</if>
|
|
|
ORDER BY o.create_time DESC
|
|
|
</select>
|