Codex Assistant
2025-11-06 375c18a6d2713ff19b22093eec57315992d8333f
backend/src/main/java/com/rongyichuang/activity/dto/ActivityResponse.java
@@ -23,6 +23,8 @@
    private Integer state;
    private LocalDateTime createTime;
    private LocalDateTime updateTime;
    // 最近一次评审导出ZIP下载URL
    private String reviewExportUrl;
    
    // 关联数据
    private RatingSchemeResponse ratingScheme;
@@ -57,6 +59,7 @@
        this.state = activity.getState();
        this.createTime = activity.getCreateTime();
        this.updateTime = activity.getUpdateTime();
        this.reviewExportUrl = activity.getReviewExportUrl();
        
        // 设置状态名称
        this.stateName = getStateNameByValue(activity.getState());
@@ -191,6 +194,14 @@
    public void setUpdateTime(LocalDateTime updateTime) {
        this.updateTime = updateTime;
    }
    public String getReviewExportUrl() {
        return reviewExportUrl;
    }
    public void setReviewExportUrl(String reviewExportUrl) {
        this.reviewExportUrl = reviewExportUrl;
    }
    
    public RatingSchemeResponse getRatingScheme() {
        return ratingScheme;