lrj
昨天 f04f35b562760afbac0c477357e2a29f77aec3b9
backend/src/main/java/com/rongyichuang/player/dto/response/ActivityPlayerApplicationResponse.java
@@ -4,9 +4,12 @@
    private Long id; // activity_player_id
    private String playerName;
    private String activityName;
    private String projectName; // 项目名称
    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; }
@@ -17,6 +20,9 @@
    public String getActivityName() { return activityName; }
    public void setActivityName(String activityName) { this.activityName = activityName; }
    public String getProjectName() { return projectName; }
    public void setProjectName(String projectName) { this.projectName = projectName; }
    public String getPhone() { return phone; }
    public void setPhone(String phone) { this.phone = phone; }
@@ -25,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; }
}