周星榜-屏蔽魅力榜

This commit is contained in:
khalil
2024-08-29 16:43:11 +08:00
parent 76b546132b
commit 28dd84bca4
4 changed files with 14 additions and 16 deletions

View File

@@ -30,7 +30,7 @@ public class WeekStarAwardTask extends BaseTask {
@Scheduled(cron = "0 1 0 ? * MON")
public void sendWeekStarAward(){
log.info("send WeekStar Award begin");
List<Integer> partitionIdList = List.of(PartitionEnum.ENGLISH.getId(), PartitionEnum.CHINESS.getId());
List<Integer> partitionIdList = List.of(PartitionEnum.CHINESS.getId());
weekStarService.sendWeekStarAward(partitionIdList);
log.info("send WeekStar Award end");
}