From 375c18a6d2713ff19b22093eec57315992d8333f Mon Sep 17 00:00:00 2001
From: Codex Assistant <codex@example.com>
Date: 星期四, 06 十一月 2025 13:33:52 +0800
Subject: [PATCH] 增加评审下载

---
 backend/src/main/java/com/rongyichuang/activity/dto/ActivityResponse.java |   15 +++++++++++++--
 1 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/backend/src/main/java/com/rongyichuang/activity/dto/ActivityResponse.java b/backend/src/main/java/com/rongyichuang/activity/dto/ActivityResponse.java
index 7673ca3..f80d70f 100644
--- a/backend/src/main/java/com/rongyichuang/activity/dto/ActivityResponse.java
+++ b/backend/src/main/java/com/rongyichuang/activity/dto/ActivityResponse.java
@@ -23,6 +23,8 @@
     private Integer state;
     private LocalDateTime createTime;
     private LocalDateTime updateTime;
+    // 鏈�杩戜竴娆¤瘎瀹″鍑篫IP涓嬭浇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());
@@ -73,8 +76,8 @@
         if (state == null) return "鏈煡";
         switch (state) {
             case 0: return "鏈彂甯�";
-            case 1: return "宸插彂甯�";
-            case 2: return "宸插叧闂�";
+            case 1: return "杩涜涓�";
+            case 2: return "鍏抽棴";
             default: return "鏈煡";
         }
     }
@@ -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;

--
Gitblit v1.8.0