lrj
5 天以前 7ba080d35812e6db7bd5aa8f88161c02653eb6c1
backend/src/main/resources/graphql/player.graphqls
@@ -26,6 +26,7 @@
type ActivityPlayerDetailResponse {
  id: ID!
  playerInfo: PlayerInfoResponse!
  regionInfo: RegionInfoResponse
  activityName: String!
  description: String
  submissionFiles: [SubmissionMediaResponse!]!
@@ -39,6 +40,13 @@
  phone: String
  description: String
  avatarUrl: String
}
# 区域信息响应
type RegionInfoResponse {
  id: ID!
  name: String!
  fullPath: String
}
# 提交资料响应
@@ -69,7 +77,7 @@
# 评分项目输入类型
input ActivityPlayerRatingItemInput {
  itemId: ID!
  score: Int!
  score: Float!
}
# 评委评分状态响应类型
@@ -83,12 +91,19 @@
# 当前评委评分响应类型
type CurrentJudgeRatingResponse {
  activityPlayerId: ID!
  judgeId: ID!
  ratings: [RatingItemScoreResponse!]!
  comment: String
  id: ID!
  totalScore: Float
  ratingTime: String
  status: Int
  remark: String
  items: [CurrentJudgeRatingItemResponse!]!
}
# 当前评委评分项响应类型
type CurrentJudgeRatingItemResponse {
  ratingItemId: ID!
  ratingItemName: String!
  score: Float!
  weightedScore: Float!
}
# 评分项目分数响应类型