소스 검색

结算审核页面默认按照申请时间降序排序

jxl 4 달 전
부모
커밋
b05f153754
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      leromro-core/src/main/java/com/leromro/core/service/impl/OrderSettlementApplicationServiceImpl.java

+ 1 - 0
leromro-core/src/main/java/com/leromro/core/service/impl/OrderSettlementApplicationServiceImpl.java

@@ -96,6 +96,7 @@ public class OrderSettlementApplicationServiceImpl extends ServiceImpl<OrderSett
             authOrderSettlementApplicationListDTO.setDeptIds(sysDeptList.stream().map(SysDept::getDeptId).collect(Collectors.toList()));
         }
         PageUtils.startPage();
+        PageUtils.orderBy("a.application_time desc");
         return orderSettlementApplicationMapper.selectOrderSettlementApplicationList(authOrderSettlementApplicationListDTO);
     }