From b39a0502e7941ce966fda53664cf1b04ba52d65f Mon Sep 17 00:00:00 2001
From: lrj <owen.stl@gmail.com>
Date: 星期三, 01 十月 2025 17:30:24 +0800
Subject: [PATCH] 清理测试文件:删除所有test、debug、fix、check_开头的文件,为重构做准备
---
backend/src/main/resources/graphql/player.graphqls | 120 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++---
1 files changed, 114 insertions(+), 6 deletions(-)
diff --git a/backend/src/main/resources/graphql/player.graphqls b/backend/src/main/resources/graphql/player.graphqls
index b8e992f..6e11257 100644
--- a/backend/src/main/resources/graphql/player.graphqls
+++ b/backend/src/main/resources/graphql/player.graphqls
@@ -1,5 +1,7 @@
extend type Query {
- activityPlayerApplications(name: String, activityId: ID, page: Int, size: Int): [ActivityPlayerApplicationResponse!]!
+ activityPlayerApplications(name: String, activityId: ID, state: Int, page: Int, size: Int): PlayerApplicationPageResponse!
+ # 鏂板锛氶」鐩瘎瀹′笓鐢ㄦ煡璇紝鍖呭惈鎵�鏈夐樁娈垫暟鎹紙鍖呮嫭澶嶈禌銆佸喅璧涳級
+ projectReviewApplications(name: String, activityId: ID, state: Int, page: Int, size: Int): ProjectReviewApplicationPageResponse!
activityPlayerDetail(id: ID!): ActivityPlayerDetailResponse
# 鎶ュ悕鐘舵�佹煡璇�
@@ -10,20 +12,37 @@
currentJudgeRating(activityPlayerId: ID!): CurrentJudgeRatingResponse
averageScoreForPlayer(activityPlayerId: ID!): Float
currentJudgeInfo: CurrentJudgeInfoResponse
+
+ # 姣旇禌鏅嬬骇鐩稿叧鏌ヨ
+ promotionCompetitions(name: String, page: Int, size: Int): [PromotionCompetitionResponse!]!
+ competitionParticipants(competitionId: ID!, page: Int, size: Int): [CompetitionParticipantResponse!]!
+ promotableParticipants(currentStageId: ID!): PromotableParticipantsResponse!
}
extend type Mutation {
saveActivityPlayerRating(input: ActivityPlayerRatingInput!): Boolean!
submitActivityRegistration(input: ActivityRegistrationInput!): ActivityRegistrationResponse!
+ updateActivityRegistration(activityPlayerId: ID!, input: ActivityRegistrationInput!): ActivityRegistrationResponse!
+
+ # 瀹℃牳鐩稿叧mutations
+ approveActivityPlayer(activityPlayerId: ID!, feedback: String): Boolean!
+ rejectActivityPlayer(activityPlayerId: ID!, feedback: String!): Boolean!
+ updatePlayerFeedback(activityPlayerId: ID!, feedback: String!): Boolean!
+
+ # 姣旇禌鏅嬬骇鐩稿叧mutations
+ promoteParticipants(input: PromotionInput!): PromotionResult!
}
type ActivityPlayerApplicationResponse {
id: ID
playerName: String!
activityName: String!
+ projectName: String
phone: String
applyTime: String!
state: Int
+ ratingCount: Int
+ averageScore: Float
}
# 姣旇禌鎶ュ悕璇︽儏鍝嶅簲锛堢敤浜庤瘎鍒嗛〉闈級
@@ -32,18 +51,42 @@
playerInfo: PlayerInfoResponse!
regionInfo: RegionInfoResponse
activityName: String!
+ projectName: String
description: String
+ feedback: String
+ state: Int
submissionFiles: [SubmissionMediaResponse!]!
ratingForm: RatingFormResponse
}
+# 鎶ュ悕瀹℃牳鍒嗛〉鍝嶅簲绫诲瀷
+type PlayerApplicationPageResponse {
+ content: [ActivityPlayerApplicationResponse!]!
+ totalElements: Int!
+ page: Int!
+ size: Int!
+}
+
+# 椤圭洰璇勫鍒嗛〉鍝嶅簲绫诲瀷
+type ProjectReviewApplicationPageResponse {
+ content: [ActivityPlayerApplicationResponse!]!
+ totalElements: Int!
+ page: Int!
+ size: Int!
+}
+
# 瀛﹀憳淇℃伅鍝嶅簲
type PlayerInfoResponse {
- id: ID!
- name: String!
- phone: String
- description: String
- avatarUrl: String
+ id: ID
+ name: String
+ phone: String
+ description: String
+ avatarUrl: String
+ avatar: MediaResponse
+ gender: Int
+ birthday: String
+ education: String
+ introduction: String
}
# 鍖哄煙淇℃伅鍝嶅簲
@@ -61,6 +104,7 @@
fileExt: String
fileSize: Int
mediaType: Int
+ thumbUrl: String
}
# 璇勫垎琛ㄥ崟鍝嶅簲
@@ -177,4 +221,68 @@
registrationTime: String
reviewStatus: Int
reviewComment: String
+}
+
+# 姣旇禌鏅嬬骇鐩稿叧绫诲瀷瀹氫箟
+
+# 姣旇禌鏅嬬骇鍒楄〃鍝嶅簲绫诲瀷
+type PromotionCompetitionResponse {
+ id: ID!
+ competitionName: String!
+ stageName: String!
+ maxParticipants: Int
+ currentCount: Int!
+ status: Int!
+ startTime: String
+ endTime: String
+ sortOrder: Int
+ state: Int
+}
+
+# 姣旇禌鍙傝禌鑰呭搷搴旂被鍨�
+type CompetitionParticipantResponse {
+ id: ID!
+ playerName: String!
+ projectName: String
+ phone: String
+ averageScore: Float
+ ratingCount: Int!
+ applyTime: String!
+ state: Int!
+}
+
+# 鏅嬬骇鎿嶄綔杈撳叆绫诲瀷
+input PromotionInput {
+ competitionId: ID!
+ participantIds: [ID!]!
+ targetStageId: ID
+}
+
+# 鏅嬬骇鎿嶄綔缁撴灉绫诲瀷
+type PromotionResult {
+ success: Boolean!
+ message: String!
+ promotedCount: Int!
+}
+
+# 鍙檵绾у弬璧涜�呭搷搴旂被鍨�
+type PromotableParticipantResponse {
+ id: ID!
+ playerId: ID!
+ playerName: String!
+ projectName: String
+ phone: String
+ averageScore: Float
+ ratingCount: Int!
+ applyTime: String!
+ state: Int!
+}
+
+# 鍙檵绾у弬璧涜�呭垪琛ㄥ搷搴旂被鍨�
+type PromotableParticipantsResponse {
+ participants: [PromotableParticipantResponse!]!
+ selectableCount: Int!
+ totalCount: Int!
+ previousStageName: String!
+ currentStageName: String!
}
\ No newline at end of file
--
Gitblit v1.8.0