|
|
@@ -530,8 +530,8 @@ public class StorageServiceImpl {
|
|
|
String y2 = d2.getYear();
|
|
|
if("其它".equals(y1)) return 1;
|
|
|
if("其它".equals(y2)) return -1;
|
|
|
- if("2016年前".equals(y1)) return 1;
|
|
|
- if("2016年前".equals(y2)) return -1;
|
|
|
+ if("2016年前".equals(y1)) return -1;
|
|
|
+ if("2016年前".equals(y2)) return 1;
|
|
|
return Integer.parseInt(y1)-Integer.parseInt(y2);
|
|
|
}).collect(Collectors.toList());
|
|
|
return res;
|