From 375c18a6d2713ff19b22093eec57315992d8333f Mon Sep 17 00:00:00 2001
From: Codex Assistant <codex@example.com>
Date: 星期四, 06 十一月 2025 13:33:52 +0800
Subject: [PATCH] 增加评审下载
---
backend/src/main/resources/graphql/player.graphqls | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/backend/src/main/resources/graphql/player.graphqls b/backend/src/main/resources/graphql/player.graphqls
index ee07e45..373e6fe 100644
--- a/backend/src/main/resources/graphql/player.graphqls
+++ b/backend/src/main/resources/graphql/player.graphqls
@@ -24,7 +24,7 @@
# 寰俊绔幏鍙栭�夋墜鎶ュ悕鐘舵��
getPlayerRegistrationState(activityId: ID!): PlayerRegistrationResponse
# 鑾峰彇姣旇禌鏅嬬骇鍒楄〃
- promotionCompetitions(name: String, page: Int, size: Int): [PromotionCompetitionResponse!]!
+ promotionCompetitions(name: String, page: Int, size: Int): PromotionCompetitionPageResponse!
# 鑾峰彇鍙檵绾у弬璧涜�呭垪琛�
promotableParticipants(currentStageId: ID!): PromotableParticipantsResponse
}
@@ -310,6 +310,15 @@
state: Int
}
+# 姣旇禌鏅嬬骇鍒楄〃鍒嗛〉鍝嶅簲绫诲瀷
+type PromotionCompetitionPageResponse {
+ content: [PromotionCompetitionResponse!]!
+ totalElements: Long!
+ page: Int!
+ size: Int!
+ totalPages: Int!
+}
+
# 鍙檵绾у弬璧涜�呭垪琛ㄥ搷搴旂被鍨�
type PromotableParticipantsResponse {
participants: [PromotableParticipantResponse!]!
--
Gitblit v1.8.0