2025-03-03 11:26:32 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
|
<mapper namespace="com.yfd.platform.modules.specialDocument.mapper.FilesMapper">
|
|
|
|
|
2025-05-26 15:56:19 +08:00
|
|
|
|
|
|
|
<!-- 批量插入文件表(存在唯一键冲突时忽略) -->
|
|
|
|
<insert id="batchInsertFiles">
|
|
|
|
INSERT INTO sd_files
|
|
|
|
(id,project_id, node_id, file_name, file_path, file_size, upload_time, uploader)
|
|
|
|
VALUES
|
|
|
|
<foreach collection="list" item="item" separator=",">
|
|
|
|
(#{item.id},#{item.projectId}, #{item.nodeId}, #{item.fileName}, #{item.filePath},
|
|
|
|
#{item.fileSize}, #{item.uploadTime}, #{item.uploader})
|
|
|
|
</foreach>
|
|
|
|
</insert>
|
|
|
|
|
2025-03-03 11:26:32 +08:00
|
|
|
</mapper>
|