@@ -263,7 +263,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="timeBegin != null and timeBegin != ''"> and SUBSTRING (TIME, 1, 10 ) >= #{timeBegin}</if>
<if test="timeEnd != null and timeEnd != ''"> and SUBSTRING (TIME, 1, 10 ) <= #{timeEnd}</if>
</where>
- order by id desc
+ order by id ASC
</select>
@@ -116,6 +116,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="timeBegin != null and timeBegin != ''"> and remark >= #{timeBegin}</if>
<if test="timeEnd != null and timeEnd != ''"> and remark <= #{timeEnd}</if>
- and del_flag = 0 order by id desc
+ and del_flag = 0 order by id ASC
</mapper>