From 276a6fdd44e69106b441e81abb9ffb17bd761e31 Mon Sep 17 00:00:00 2001
From: wangxy <1481820854@qq.com>
Date: Fri, 18 Oct 2024 09:54:42 +0800
Subject: [PATCH] =?UTF-8?q?fix:=E8=87=AA=E6=9F=A5=E3=80=81=E6=96=87?=
=?UTF-8?q?=E4=BB=B6url?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../com/ruoyi/system/domain/check/TdCheckType.java | 10 ++++++++++
.../ruoyi/system/domain/check/dto/TdCheckTypeDTO.java | 11 +++++++++++
.../resources/mapper/system/TdCheckTypeMapper.xml | 4 +++-
3 files changed, 24 insertions(+), 1 deletion(-)
diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/TdCheckType.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/TdCheckType.java
index e219881..d93eb36 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/TdCheckType.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/TdCheckType.java
@@ -82,6 +82,16 @@ public class TdCheckType implements Serializable {
*/
private String remark;
+ /**
+ * 文件地址
+ */
+ private String fileUrl;
+
+ /**
+ * 文件名
+ */
+ private String fileName;
+
@TableField(exist = false)
private static final long serialVersionUID = 1L;
}
\ No newline at end of file
diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/dto/TdCheckTypeDTO.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/dto/TdCheckTypeDTO.java
index 7bbf482..c5bc03f 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/dto/TdCheckTypeDTO.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/dto/TdCheckTypeDTO.java
@@ -81,6 +81,17 @@ public class TdCheckTypeDTO implements Serializable {
private String remark;
+ /**
+ * 文件地址
+ */
+ private String fileUrl;
+
+ /**
+ * 文件名
+ */
+ private String fileName;
+
+
@TableField(exist = false)
private static final long serialVersionUID = 1L;
}
\ No newline at end of file
diff --git a/ruoyi-system/src/main/resources/mapper/system/TdCheckTypeMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdCheckTypeMapper.xml
index 5805635..554b583 100644
--- a/ruoyi-system/src/main/resources/mapper/system/TdCheckTypeMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/TdCheckTypeMapper.xml
@@ -17,11 +17,13 @@
+
+
id,check_id,check_type,
type_content,starts,type_name,check_items,score,real_score,deduction_criteria,items_type,
- remark
+ remark,file_url,file_name