java 8 排序并分組方式,返回有序集合
LinkedHashMap<Date, List<ViewManage>> collect = manage.stream().sorted(Comparator.comparing(ViewManage::getInvoiceDate))
.collect(Collectors.groupingBy(ViewManage::getInvoiceDate, LinkedHashMap::new, Collectors.toList()));
```