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 | 11 +++++++++++
1 files changed, 11 insertions(+), 0 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 b603d44..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());
@@ -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