新增排序

This commit is contained in:
马三炮 2026-01-23 16:02:04 +08:00
parent c1b2458d2e
commit e002d90778
1 changed files with 2 additions and 1 deletions

View File

@ -119,7 +119,8 @@ public class PurchaseServiceImpl implements PurchaseService {
} catch (Exception e) {
log.error(e.toString(), e);
}
//根据lastDay进行
Collections.sort(list, Comparator.comparing(PurchaseVo::getLastDay).reversed());
return list;
}