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/entity/Activity.java | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/backend/src/main/java/com/rongyichuang/activity/entity/Activity.java b/backend/src/main/java/com/rongyichuang/activity/entity/Activity.java
index 41ac1e7..5ceeec0 100644
--- a/backend/src/main/java/com/rongyichuang/activity/entity/Activity.java
+++ b/backend/src/main/java/com/rongyichuang/activity/entity/Activity.java
@@ -51,6 +51,12 @@
*/
@Column(name = "state", nullable = false)
private Integer state = 1;
+
+ /**
+ * 璇勫瀵煎嚭ZIP涓嬭浇URL锛堟渶杩戜竴娆″鍑猴級
+ */
+ @Column(name = "review_export_url", length = 512)
+ private String reviewExportUrl;
// 鍏宠仈璇勫垎妯℃澘
@ManyToOne(fetch = FetchType.LAZY)
@@ -195,6 +201,14 @@
public void setState(Integer state) {
this.state = state;
}
+
+ public String getReviewExportUrl() {
+ return reviewExportUrl;
+ }
+
+ public void setReviewExportUrl(String reviewExportUrl) {
+ this.reviewExportUrl = reviewExportUrl;
+ }
// 涓氬姟鏂规硶
public boolean isMainActivity() {
--
Gitblit v1.8.0