Codex Assistant
昨天 58d9f460b2f8c34430285115e2557d18333c5cab
backend/src/main/java/com/rongyichuang/player/dto/PromotableParticipantResponse.java
@@ -28,7 +28,9 @@
        this.id = activityPlayer.getId();
        this.playerName = activityPlayer.getPlayer() != null ? activityPlayer.getPlayer().getName() : "";
        this.projectName = activityPlayer.getProjectName();
        this.phone = activityPlayer.getPlayer() != null ? activityPlayer.getPlayer().getPhone() : "";
        // 从User实体获取phone,而不是从Player实体(Player.phone已废弃)
        this.phone = activityPlayer.getPlayer() != null && activityPlayer.getPlayer().getUser() != null ?
            activityPlayer.getPlayer().getUser().getPhone() : "";
        this.averageScore = averageScore;
        this.ratingCount = ratingCount != null ? ratingCount : 0;
        this.applyTime = activityPlayer.getCreateTime() != null ?