소스 검색

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

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">