Commit bdda739d5345d3efdb7cf74789ede9227f3d16c5
1 parent
b26e73343c
Exists in
master
and in
6 other branches
update code
Showing 1 changed file with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/LisFacade.java
View file @
bdda739
... | ... | @@ -92,8 +92,8 @@ |
92 | 92 | if (((CheckResponse)b).getApplyDate() == null) { |
93 | 93 | return -1; |
94 | 94 | } |
95 | - if (((CheckResponse)a).getApplyDate().before(((CheckResponse)a).getApplyDate())) { | |
96 | - return -1; | |
95 | + if (((CheckResponse)a).getApplyDate().before(((CheckResponse)b).getApplyDate())) { | |
96 | + return 1; | |
97 | 97 | } |
98 | 98 | return -1; |
99 | 99 | } |