master:已购推广列表按照播放时间升序排列;

pull/1121/head
liujiang 2025-09-01 16:54:54 +08:00
parent 220df6925a
commit 9317e9a74a
1 changed files with 2 additions and 0 deletions

View File

@ -442,6 +442,8 @@ public class AdvertRoundServiceImpl implements IAdvertRoundService {
+ ",最新出价:" + positionEnumMaxPriceMap.get(record.getAdvertRoundId())));
});
}
// 按照播放时间升序排列
boughtRoundList.sort(Comparator.comparing(AdRoundStoreBoughtResDTO::getStartTime));
return boughtRoundList;
}