瀏覽代碼

查询案件列表时改为创建时间和案件编号倒序,防止批量导入时创建时间一致

18792927508 2 年之前
父節點
當前提交
464bf5c428
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      ruoyi-system/src/main/resources/mapper/wisdomarbitrate/CaseApplicationMapper.xml

+ 1
- 1
ruoyi-system/src/main/resources/mapper/wisdomarbitrate/CaseApplicationMapper.xml 查看文件

@@ -71,7 +71,7 @@
71 71
                 </foreach>
72 72
             </if>
73 73
         </where>
74
-        order by c.create_time desc
74
+        order by c.create_time desc,c.case_num desc
75 75
     </select>
76 76
 
77 77
     <select id="selectCaseApplicationCount" parameterType="CaseApplication" resultType="int">