|
@@ -163,10 +163,6 @@ public class MusicAlbumServiceImpl extends ServiceImpl<MusicAlbumDao,MusicAlbum>
|
|
|
|
|
|
List<MusicSheetVo> records = musicSheetVoIPage.getRecords();
|
|
|
if (CollectionUtils.isNotEmpty(records)) {
|
|
|
- for (MusicSheetVo record : records) {
|
|
|
- // 设置收藏人数
|
|
|
- record.setFavoriteCount(record.getFavoriteCount() + record.getVirtualNumber());
|
|
|
- }
|
|
|
// 专辑曲目付费方式
|
|
|
List<String> paymentTypes = musicSheetVoIPage.getRecords().stream()
|
|
|
.flatMap(x -> Arrays.stream(x.getPaymentType().split(","))).distinct().collect(Collectors.toList());
|