From 3f8e20fa50b190cba56425acb087d49c65a48aff Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Sat, 21 Mar 2026 17:53:36 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=AF=E5=88=A0=E9=99=A4=E6=81=A2=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../adapter/app/activity/RankingActivityRestController.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rc-service/rc-service-other/other-adapter/src/main/java/com/red/circle/other/adapter/app/activity/RankingActivityRestController.java b/rc-service/rc-service-other/other-adapter/src/main/java/com/red/circle/other/adapter/app/activity/RankingActivityRestController.java index 0ec8c520..3de63e0f 100644 --- a/rc-service/rc-service-other/other-adapter/src/main/java/com/red/circle/other/adapter/app/activity/RankingActivityRestController.java +++ b/rc-service/rc-service-other/other-adapter/src/main/java/com/red/circle/other/adapter/app/activity/RankingActivityRestController.java @@ -80,6 +80,9 @@ public class RankingActivityRestController extends BaseController { */ @PostMapping("/top-four-with-reward") public List getTopFourRankingWithReward(@RequestBody RankingListQueryCmd cmd) { + if (cmd.getCycleType() == null) { + cmd.setCycleKey(ZonedDateTimeAsiaRiyadhUtils.nowWeekMondayToInt().toString()); + } cmd.setActivityType(RankingActivityType.KING_GAMES.getCode()); cmd.setTemplateId("2001207026499137537"); return rankingActivityService.getTopFourRankingWithReward(cmd);