模型新增objectKey

master
Diyu0904 2025-03-11 15:18:58 +08:00
parent 09b3e8f7d2
commit 6810cd2270
1 changed files with 2 additions and 2 deletions

View File

@ -7,11 +7,11 @@
<insert id="addWorkFlowVersion">
INSERT INTO work_flow_version (version_name,version_description,file_path,image_paths,hide_gen_info,del_flag,
work_flow_id,file_name,file_size,file_hash)
work_flow_id,file_name,file_size,file_hash,object_key)
VALUES
<foreach collection="list" item="item" separator=",">
(#{item.versionName}, #{item.versionDescription}, #{item.filePath}, #{item.imagePaths},#{item.hideGenInfo},
0,#{workFlow.id},#{item.fileName},#{item.fileSize},#{item.fileHash})
0,#{workFlow.id},#{item.fileName},#{item.fileSize},#{item.fileHash},#{item.objectKey})
</foreach>
</insert>
<update id="updateWorkFlowVersion">