From afeeed281e60466b576fbe74d339634cc5d07b82 Mon Sep 17 00:00:00 2001
From: Codex Assistant <codex@example.com>
Date: 星期三, 08 十月 2025 08:56:42 +0800
Subject: [PATCH] 修复评审功能和用户认证问题

---
 backend/src/main/resources/graphql/auth.graphqls |   30 ++++++++++++++++++++++++++----
 1 files changed, 26 insertions(+), 4 deletions(-)

diff --git a/backend/src/main/resources/graphql/auth.graphqls b/backend/src/main/resources/graphql/auth.graphqls
index 87bc082..7addfa7 100644
--- a/backend/src/main/resources/graphql/auth.graphqls
+++ b/backend/src/main/resources/graphql/auth.graphqls
@@ -1,12 +1,19 @@
 extend type Query {
-    # 杩欎釜鏂囦欢涓昏鏄� mutation, 鎵�浠� query 鍙兘鏄┖鐨�
+    # 璁よ瘉鐩稿叧鎺ュ彛宸茶縼绉诲埌RESTful API
     _: Boolean
 }
 
 extend type Mutation {
-    webLogin(input: LoginRequest!): LoginResponse
+    # 寰俊鐧诲綍
     wxLogin(input: WxLoginRequest!): WxLoginResponse
+    
+    # Web绔櫥褰�
+    webLogin(input: LoginRequest!): LoginResponse
+    
+    # 瑙e瘑寰俊鎵嬫満鍙凤紙鏃х増API锛�
     decryptPhoneNumber(encryptedData: String!, iv: String!, sessionKey: String!): PhoneDecryptResponse
+    
+    # 鑾峰彇寰俊鎵嬫満鍙凤紙鏂扮増API锛�
     getPhoneNumberByCode(code: String!): PhoneDecryptResponse
 }
 
@@ -37,6 +44,11 @@
     isNewUser: Boolean
     loginRecordId: Long
     sessionKey: String
+    success: Boolean
+    message: String
+    hasEmployee: Boolean
+    hasJudge: Boolean
+    hasPlayer: Boolean
 }
 
 type UserInfo {
@@ -44,6 +56,7 @@
     name: String
     phone: String
     userType: String
+    avatarUrl: String
     employee: EmployeeInfo
     judge: JudgeInfo
     player: PlayerInfo
@@ -65,10 +78,19 @@
 }
 
 type PlayerInfo {
-    id: Long
-    name: String
+    id: ID!
+    name: String!
     phone: String
     description: String
+    userInfo: PlayerUserInfo
+}
+
+type PlayerUserInfo {
+    userId: Long
+    name: String
+    phone: String
+    avatarUrl: String
+    avatar: MediaInfo
 }
 
 type PhoneDecryptResponse {

--
Gitblit v1.8.0