Browse Source

fix委托结项查询、委托审核查询按生成时间倒序

LLL 1 year ago
parent
commit
24a90aea18

+ 1 - 1
itdmServer/module-iTDM/src/main/java/org/jeecg/modules/weituo/mapper/xml/ItdmWeituoInfoMapper.xml

@@ -34,7 +34,7 @@
                 </if>
             </where>
             ORDER BY
-            w.weituo_no
+            w.create_time desc
         ) e
     </select>
 </mapper>

+ 1 - 1
itdmServer/module-iTDM/src/main/java/org/jeecg/modules/weituochaxun/mapper/xml/ItdmWeituochaxunMapper.xml

@@ -27,7 +27,7 @@
                 and iwi.shenhe_status=#{vo.shenheStatus}
             </if>
         </where>
-        order by weituo_client,weituo_no
+        order by iwi.create_time desc
     </select>
 
 </mapper>