From 3714621173c606c4c58439ed8941100ce9ddea14 Mon Sep 17 00:00:00 2001
From: Codex Assistant <codex@example.com>
Date: 星期三, 05 十一月 2025 15:10:49 +0800
Subject: [PATCH] bug
---
backend/src/main/java/com/rongyichuang/player/api/PlayerGraphqlApi.java | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/backend/src/main/java/com/rongyichuang/player/api/PlayerGraphqlApi.java b/backend/src/main/java/com/rongyichuang/player/api/PlayerGraphqlApi.java
index 6f1be89..67f728c 100644
--- a/backend/src/main/java/com/rongyichuang/player/api/PlayerGraphqlApi.java
+++ b/backend/src/main/java/com/rongyichuang/player/api/PlayerGraphqlApi.java
@@ -15,6 +15,7 @@
import com.rongyichuang.player.dto.response.PlayerRegistrationResponse;
import com.rongyichuang.player.dto.response.StageJudgeRatingDetailResponse;
import com.rongyichuang.player.dto.PromotionCompetitionResponse;
+import com.rongyichuang.player.dto.response.PromotionCompetitionPageResponse;
import com.rongyichuang.player.dto.CompetitionParticipantResponse;
import com.rongyichuang.player.dto.PromotionInput;
import com.rongyichuang.player.dto.PromotionResult;
@@ -87,12 +88,13 @@
public ProjectReviewApplicationPageResponse projectReviewApplications(
@Argument String name,
@Argument Long activityId,
+ @Argument Long regionId,
@Argument Integer state,
@Argument Integer page,
@Argument Integer size
) {
PageResponse<ActivityPlayerApplicationResponse> pageResponse =
- service.listProjectReviewApplications(name, activityId, state, page, size);
+ service.listProjectReviewApplications(name, activityId, regionId, state, page, size);
return ProjectReviewApplicationPageResponse.from(pageResponse);
}
@@ -284,7 +286,7 @@
* 鑾峰彇姣旇禌鏅嬬骇鍒楄〃
*/
@QueryMapping
- public List<PromotionCompetitionResponse> promotionCompetitions(
+ public PromotionCompetitionPageResponse promotionCompetitions(
@Argument String name,
@Argument Integer page,
@Argument Integer size) {
--
Gitblit v1.8.0