diff --git a/pom.xml b/pom.xml
index 92f87d09..5d3aaae6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -71,7 +71,7 @@
https://github.com/YunaiV/ruoyi-vue-pro
- 3.0.3
+ 3.0.31
17
${java.version}
diff --git a/yudao-dependencies/pom.xml b/yudao-dependencies/pom.xml
index 5d353506..fc27fc71 100644
--- a/yudao-dependencies/pom.xml
+++ b/yudao-dependencies/pom.xml
@@ -26,7 +26,7 @@
https://github.com/YunaiV/ruoyi-vue-pro
- 3.0.3
+ 3.0.31
1.6.0
3.4.5
diff --git a/yudao-module-infra/yudao-module-infra-api/src/main/java/cn/iocoder/yudao/module/infra/api/businessfile/dto/BusinessFileWithUrlRespDTO.java b/yudao-module-infra/yudao-module-infra-api/src/main/java/cn/iocoder/yudao/module/infra/api/businessfile/dto/BusinessFileWithUrlRespDTO.java
new file mode 100644
index 00000000..42e13723
--- /dev/null
+++ b/yudao-module-infra/yudao-module-infra-api/src/main/java/cn/iocoder/yudao/module/infra/api/businessfile/dto/BusinessFileWithUrlRespDTO.java
@@ -0,0 +1,49 @@
+package cn.iocoder.yudao.module.infra.api.businessfile.dto;
+
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.NoArgsConstructor;
+
+/**
+ * 业务附件关联带URL响应 DTO
+ *
+ * @author 后台管理
+ */
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+@EqualsAndHashCode(callSuper = true)
+public class BusinessFileWithUrlRespDTO extends BusinessFileRespDTO {
+
+ /**
+ * 文件路径
+ */
+ private String filePath;
+
+ /**
+ * 文件 URL
+ */
+ private String fileUrl;
+
+ /**
+ * 附件预览地址
+ */
+ private String previewUrl;
+
+ /**
+ * 是否加密
+ */
+ private Boolean isEncrypted;
+
+ /**
+ * 文件MIME类型
+ */
+ private String fileType;
+
+ /**
+ * 文件大小
+ */
+ private Integer fileSize;
+
+}
\ No newline at end of file