From 0a48616045ddce1562584543a0e89e5144051fde Mon Sep 17 00:00:00 2001 From: Codex Assistant <codex@example.com> Date: 星期日, 05 十月 2025 14:52:44 +0800 Subject: [PATCH] 报名审核 --- backend/src/main/resources/graphql/player.graphqls | 45 ++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 44 insertions(+), 1 deletions(-) diff --git a/backend/src/main/resources/graphql/player.graphqls b/backend/src/main/resources/graphql/player.graphqls index d72f9d7..e686a1d 100644 --- a/backend/src/main/resources/graphql/player.graphqls +++ b/backend/src/main/resources/graphql/player.graphqls @@ -17,6 +17,10 @@ # 鑾峰彇褰撳墠璇勫瀵归�夋墜鐨勮瘎鍒� currentJudgeRating(activityPlayerId: ID!): CurrentJudgeRatingResponse activityPlayerDetail(id: ID!): ActivityPlayerDetailResponse + # 鑾峰彇鍙傝禌椤圭洰闃舵鏃堕棿杞村強璇勫垎姒傚喌 + projectStageTimeline(activityPlayerId: ID!): ProjectStageTimelineResponse + # 鑾峰彇鎸囧畾闃舵鐨勮瘎濮旇瘎鍒嗚鎯� + stageJudgeRatings(activityPlayerId: ID!): StageJudgeRatingDetailResponse # 寰俊绔幏鍙栭�夋墜鎶ュ悕鐘舵�� getPlayerRegistrationState(activityId: ID!): PlayerRegistrationResponse # 鑾峰彇姣旇禌鏅嬬骇鍒楄〃 @@ -92,6 +96,7 @@ totalScore: Float status: Int remark: String + ratedAt: String items: [CurrentJudgeRatingItemResponse!]! } @@ -101,6 +106,44 @@ ratingItemName: String! score: Float weightedScore: Float + maxScore: Float +} + +type ProjectStageTimelineResponse { + activityId: ID! + activityName: String + stages: [ProjectStageTimelineItemResponse!]! +} + +type ProjectStageTimelineItemResponse { + stageId: ID! + stageName: String! + matchTime: String + sortOrder: Int + participated: Boolean! + activityPlayerId: ID + averageScore: Float + ratingCount: Int! + hasRating: Boolean! + latestRatingTime: String +} + +type StageJudgeRatingDetailResponse { + activityPlayerId: ID! + stageId: ID + stageName: String + matchTime: String + ratingCount: Int! + averageScore: Float + judgeRatings: [StageJudgeRatingItemResponse!]! +} + +type StageJudgeRatingItemResponse { + judgeId: ID! + judgeName: String! + totalScore: Float + feedback: String + ratingTime: String } type ActivityPlayerApplicationResponse { @@ -301,4 +344,4 @@ success: Boolean! message: String promotedCount: Int -} \ No newline at end of file +} -- Gitblit v1.8.0