List<TrackFollowSellPriceVO> trackFollowSellPriceVOList =
TrackFollowSellConvert.INSTANCE.convertToTrackFollowSellPriceVOList(historySellerListMap.get(timeKey));
//根据price排序
trackFollowSellPriceVOList.sort(Comparator.comparing(TrackFollowSellPriceVO::getBuyBoxPrice));
03-30