From daffc63ee000f6de9dabc356057b3d00a2d71d83 Mon Sep 17 00:00:00 2001
From: kongzy <kongzy>
Date: Thu, 12 Oct 2023 12:54:57 +0800
Subject: [PATCH] 增加pro配置文件
---
ruoyi-file/src/main/resources/mapper/AttachmentInfoMapper.xml | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/ruoyi-file/src/main/resources/mapper/AttachmentInfoMapper.xml b/ruoyi-file/src/main/resources/mapper/AttachmentInfoMapper.xml
index 8d0e049..4e69b19 100644
--- a/ruoyi-file/src/main/resources/mapper/AttachmentInfoMapper.xml
+++ b/ruoyi-file/src/main/resources/mapper/AttachmentInfoMapper.xml
@@ -3,11 +3,11 @@
<mapper namespace="com.ruoyi.file.mapper.AttachmentInfoMapper" >
<insert id="saveBatch" useGeneratedKeys="true" keyProperty="id" >
insert into attachment (file_key,file_path,file_url,file_name,file_suffix,file_desc,file_size,file_type,module,del_flag
- ,create_by,create_time,update_by,update_time)values
+ ,create_by,create_time,update_by,update_time,business_id,remark)values
<foreach collection="attachmentList" item="attachment" separator=",">
(#{attachment.fileKey},#{attachment.filePath},#{attachment.fileUrl},#{attachment.fileName},#{attachment.fileSuffix},#{attachment.fileDesc},
#{attachment.fileSize},#{attachment.fileType},#{attachment.module},#{attachment.delFlag},#{attachment.createBy},
- #{attachment.createTime},#{attachment.updateBy},#{attachment.updateTime})
+ #{attachment.createTime},#{attachment.updateBy},#{attachment.updateTime},#{attachment.businessId},#{attachment.remark})
</foreach>
</insert>
<update id="updateBusinessIdBatch">
--
Gitblit v1.9.2