backend/src/main/java/com/rongyichuang/player/dto/response/ActivityPlayerApplicationResponse.java
@@ -8,6 +8,8 @@
    private String phone;
    private String applyTime; // ISO字符串
    private Integer state;
    private Integer ratingCount; // 评审次数
    private Double averageScore; // 平均分
    public Long getId() { return id; }
    public void setId(Long id) { this.id = id; }
@@ -29,4 +31,10 @@
    public Integer getState() { return state; }
    public void setState(Integer state) { this.state = state; }
    public Integer getRatingCount() { return ratingCount; }
    public void setRatingCount(Integer ratingCount) { this.ratingCount = ratingCount; }
    public Double getAverageScore() { return averageScore; }
    public void setAverageScore(Double averageScore) { this.averageScore = averageScore; }
}