honorfire 7 hónapja
szülő
commit
4652a8f91f

+ 3 - 2
snowy-plugin/snowy-plugin-disk/snowy-plugin-disk-func/src/main/java/vip/xiaonuo/disk/mapper/mapping/SemesterMapper.xml

@@ -20,6 +20,7 @@
         <if test="param.quater !=null and param.quater != ''">
             and se.QUATER =#{param.quater}
         </if>
+        order by se.CREATE_TIME desc
     </select>
     <select id="queryAllList" resultType="java.util.Map">
         SELECT
@@ -33,6 +34,7 @@
         <if test="name!=null and name != ''">
             and se.NAME like CONCAT('%', #{name}, '%')
         </if>
+        order by se.CREATE_TIME desc
     </select>
     <select id="queryInfo" resultType="java.util.Map">
         SELECT
@@ -46,7 +48,6 @@
         <if test="id!=null and id != ''">
             and se.ID =#{id}
         </if>
-        order by se.ci.CREATE_TIME desc
     </select>
     <select id="downList" resultType="java.util.Map">
         SELECT
@@ -75,6 +76,6 @@
                 group by se.QUATER
             </if>
         </if>
-        order by se.ci.CREATE_TIME desc
+        order by se.CREATE_TIME desc
     </select>
 </mapper>