Commit f2a63fa7 authored by lisong's avatar lisong

修改bug

parent ee53e5fb
...@@ -1448,12 +1448,12 @@ ...@@ -1448,12 +1448,12 @@
<if test="name != null and name != ''"> <if test="name != null and name != ''">
AND point_no like concat('%', #{pointNo}, '%') AND point_no like concat('%', #{pointNo}, '%')
</if> </if>
ORDER BY create_date ORDER BY create_date desc
LIMIT #{number}, #{size} LIMIT #{number}, #{size}
</select> </select>
<select id="countRoutePointList" resultType="java.lang.Integer"> <select id="countRoutePointList" resultType="java.lang.Integer">
SELECT count(1) from p_point SELECT count(1) from p_point
WHERE route_id is null WHERE route_id is null and is_delete = 0
<if test="name != null and name != ''"> <if test="name != null and name != ''">
AND name like concat('%', #{name}, '%') AND name like concat('%', #{name}, '%')
</if> </if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment