Commit 95635243bd475155b8c65e0fabffd3c21a71600d
1 parent
48b4132979
Exists in
master
and in
6 other branches
全部孕妇管理增加按照排序
Showing 1 changed file with 1 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/utils/CollectionUtils.java
View file @
9563524
| ... | ... | @@ -213,7 +213,7 @@ |
| 213 | 213 | if(CollectionUtils.isNotEmpty(restList)) { |
| 214 | 214 | List<Map<String, Object>> tempList = new ArrayList<>(); |
| 215 | 215 | int size = restList.size(); |
| 216 | - for (int i = size - 1; i > 0 ; i--) { | |
| 216 | + for (int i = size - 1; i >= 0 ; i--) { | |
| 217 | 217 | tempList.add(restList.get(i)); |
| 218 | 218 | } |
| 219 | 219 | restList.clear(); |